using System.Collections.Generic;
using Datory.Annotations;
using GxPress.Common.Tools;
namespace GxPress.Entity.WorkMeeting
{
///
/// 会议纪要
///
[DataTable("tede_meeting_summary")]
public class MeetingSummary : Datory.Entity
{
///
/// 会议纪要主题
///
[DataColumn]
public string Title { get; set; }
///
/// 会议纪要正文
///
[DataColumn(Text = true)]
public string Content { get; set; }
///
/// 会议室Id
///
[DataColumn]
public int RoomId { get; set; }
///
/// 会议Id
///
[DataColumn]
public int MeetingId { get; set; }
///
/// 发起人
///
[DataColumn]
public int UserId { get; set; }
[DataColumn]
public string UserIdCollection { get; set; }
///
/// 发送人Id
///
public IEnumerable UserIds{get;set;}
}
}