| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S0.Manufacturing;
- /// <summary>
- /// 生产要素参数(源平台 DevMonitor)。
- /// </summary>
- [SugarTable("DevMonitor", "生产要素参数表")]
- public class AdoS0DevMonitor
- {
- [SugarColumn(ColumnName = "id", ColumnDescription = "生产要素参数主键", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")]
- public long Id { get; set; }
- [SugarColumn(ColumnName = "device_number", ColumnDescription = "要素编码", Length = 100)]
- public string DeviceNumber { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "device_descr", ColumnDescription = "要素描述", Length = 255, IsNullable = true)]
- public string? DeviceDescr { get; set; }
- [SugarColumn(ColumnName = "message_code", ColumnDescription = "参数编码", Length = 100)]
- public string MessageCode { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "code_descr", ColumnDescription = "参数描述", Length = 255, IsNullable = true)]
- public string? CodeDescr { get; set; }
- [SugarColumn(ColumnName = "value_type", ColumnDescription = "值类型", Length = 50, IsNullable = true)]
- public string? ValueType { get; set; }
- [SugarColumn(ColumnName = "std_value", ColumnDescription = "标准值", Length = 255, IsNullable = true)]
- public string? StdValue { get; set; }
- [SugarColumn(ColumnName = "top_limit", ColumnDescription = "上限值", DecimalDigits = 6, Length = 18, IsNullable = true)]
- public decimal? TopLimit { get; set; }
- [SugarColumn(ColumnName = "low_limit", ColumnDescription = "下限值", DecimalDigits = 6, Length = 18, IsNullable = true)]
- public decimal? LowLimit { get; set; }
- [SugarColumn(ColumnName = "ufld1", ColumnDescription = "值选择数据", Length = 1000, IsNullable = true)]
- public string? Ufld1 { get; set; }
- [SugarColumn(ColumnName = "um", ColumnDescription = "单位", Length = 50, IsNullable = true)]
- public string? UM { 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; }
- }
|