namespace DOAN.Model.Business { /// /// 工艺建模项目表 /// [SugarTable("pro_model_project")] public class ProModelProject { /// /// id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// 项目号code /// [SugarColumn(ColumnName = "project_code")] public string ProjectCode { get; set; } /// /// 项目号name /// [SugarColumn(ColumnName = "project_name")] public string ProjectName { get; set; } /// /// 产品code /// [SugarColumn(ColumnName = "product_code")] public string ProductCode { get; set; } /// /// 产品名称 /// [SugarColumn(ColumnName = "product_name")] public string ProductName { get; set; } /// /// 版本 /// public string Version { get; set; } /// /// 工序描述 /// public string Description { get; set; } /// /// 是否有效:1=有效,0=无效 /// [SugarColumn(ColumnName = "is_active")] public string IsActive { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public DateTime? CreateTime { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public string CreateBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "update_time")] public DateTime? UpdateTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "update_by")] public string UpdateBy { get; set; } /// /// 备注 /// public string Remark { get; set; } } }