namespace DOAN.Model.MES.process
{
///
/// 工艺路线表
///
[SugarTable("processmodel_routing")]
public class ProcessmodelRouting
{
///
/// 主键ID
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 工艺路线编码
///
[SugarColumn(ColumnName = "routing_code")]
public string RoutingCode { get; set; }
///
/// 工艺路线名称
///
[SugarColumn(ColumnName = "routing_name")]
public string RoutingName { get; set; }
///
/// 产品/物料编码
///
[SugarColumn(ColumnName = "product_code")]
public string ProductCode { get; set; }
///
/// 工艺路线描述
///
public string Description { get; set; }
///
/// 版本号
///
public string Version { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public DateTime? CreateTime { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "update_time")]
public DateTime? UpdateTime { get; set; }
///
/// 是否有效:1=有效,0=无效
///
[SugarColumn(ColumnName = "is_active")]
public string IsActive { get; set; }
}
}