using Datory;
using Datory.Annotations;
using GxPress.Common.Tools;
namespace GxPress.Entity.WorkProcess
{
///
/// 抄送规则
///
[DataTable("tede_rule_carbon_copy")]
public class RuleCarbonCopy : Datory.Entity, IMultipleUser
{
///
/// 抄送节点id
///
[DataColumn]
public int NodeId { get; set; }
///
/// 用户id
///
[DataColumn]
public int UserId { get; set; }
///
/// 角色id
///
[DataColumn]
public int RoleId { get; set; }
///
/// 部门id
///
[DataColumn]
public int DepartmentId { get; set; }
}
}