using System;
using System.Collections.Generic;
using System.Text;
using GxPress.EnumConst;
using Datory;
using Datory.Annotations;
namespace GxPress.Entity
{
///
/// 通知抄送
///
[DataTable("tede_notice_cc")]
public class NoticeCc : Datory.Entity
{
///
/// 通知ID
///
[DataColumn]
public int NoticeId { get; set; }
///
/// 抄送人ID
///
[DataColumn]
public int UserId { get; set; }
///
/// 抄送人姓名
///
[DataColumn]
public string UserName { get; set; }
///
/// 是否阅读
///
[DataColumn]
public bool IsRead { get; set; }
///
/// 抄送人 1 接收 2 草稿
///
[DataColumn]
public NoticeTypeConst NoticeCcType { get; set; }
}
}