| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S0.Manufacturing;
- /// <summary>
- /// 物料工序生产要素(源平台 ItemOpCondition)。
- /// </summary>
- [SugarTable("ItemOpCondition", "物料工序生产要素表")]
- public class AdoS0ItemOpCondition
- {
- [SugarColumn(ColumnName = "id", ColumnDescription = "物料工序生产要素主键", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")]
- public long Id { get; set; }
- [SugarColumn(ColumnName = "item_num", ColumnDescription = "物料编码", Length = 100)]
- public string ItemNum { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "op", ColumnDescription = "工序编码", Length = 100, IsNullable = true)]
- public string? Op { get; set; }
- [SugarColumn(ColumnName = "line", ColumnDescription = "生产线编码", Length = 100, IsNullable = true)]
- public string? Line { get; set; }
- [SugarColumn(ColumnName = "typed", ColumnDescription = "类型编码", Length = 100, IsNullable = true)]
- public string? Typed { get; set; }
- [SugarColumn(ColumnName = "item_code", ColumnDescription = "要素编码", Length = 100, IsNullable = true)]
- public string? ItemCode { get; set; }
- [SugarColumn(ColumnName = "descr", ColumnDescription = "描述", Length = 255, IsNullable = true)]
- public string? Descr { get; set; }
- [SugarColumn(ColumnName = "is_main", ColumnDescription = "是否关键", ColumnDataType = "boolean")]
- public bool IsMain { get; set; }
- [SugarColumn(ColumnName = "code_type", ColumnDescription = "参数分组类型", Length = 50)]
- public string CodeType { get; set; } = "Prod";
- [SugarColumn(ColumnName = "domain", ColumnDescription = "工厂域编码", Length = 50)]
- public string Domain { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "create_user", ColumnDescription = "创建人", Length = 64, IsNullable = true)]
- public string? CreateUser { get; set; }
- [SugarColumn(ColumnName = "create_time", ColumnDescription = "创建时间", IsNullable = true)]
- public DateTime? CreateTime { get; set; }
- [SugarColumn(ColumnName = "update_user", ColumnDescription = "更新人", Length = 64, IsNullable = true)]
- public string? UpdateUser { get; set; }
- [SugarColumn(ColumnName = "update_time", ColumnDescription = "更新时间", IsNullable = true)]
- public DateTime? UpdateTime { get; set; }
- }
|