namespace MDM.Model.Process
{
///
/// 工序流转类型字典
///
[SugarTable("process_opreration_transition_dict", "工序流转类型字典")]
public class ProcessOprerationTransitionDict
{
///
/// id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 流转code
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "transition_code",Length =50)]
public string TransitionCode { get; set; }
///
/// 流转name
///
[SugarColumn(ColumnName = "transtion_name",Length = 50)]
public string TranstionName { get; set; }
///
/// 描述
///
[SugarColumn(ColumnDataType ="text")]
public string Description { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "cREATED_BY",Length = 50)]
public string CreatedBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "cREATED_TIME")]
public DateTime? CreatedTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "uPDATED_BY", Length = 50)]
public string UpdatedBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "uPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}