namespace Admin.NET.Plugin.AiDOP.Entity.S0.Manufacturing; /// /// 生产要素参数(源平台 DevMonitor)。 /// [SugarTable("DevMonitor", "生产要素参数表")] public class AdoS0DevMonitor { [SugarColumn(ColumnName = "RecID", ColumnDescription = "生产要素参数主键", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")] public long Id { get; set; } [SugarColumn(ColumnName = "DeviceNumber", ColumnDescription = "要素编码", Length = 100)] public string DeviceNumber { get; set; } = string.Empty; [SugarColumn(ColumnName = "DeviceDescr", ColumnDescription = "要素描述", Length = 255, IsNullable = true)] public string? DeviceDescr { get; set; } [SugarColumn(ColumnName = "MessageCode", ColumnDescription = "参数编码", Length = 100)] public string MessageCode { get; set; } = string.Empty; [SugarColumn(ColumnName = "CodeDescr", ColumnDescription = "参数描述", Length = 255, IsNullable = true)] public string? CodeDescr { get; set; } [SugarColumn(ColumnName = "ValueType", ColumnDescription = "值类型", Length = 50, IsNullable = true)] public string? ValueType { get; set; } [SugarColumn(ColumnName = "StdValue", ColumnDescription = "标准值", Length = 255, IsNullable = true)] public string? StdValue { get; set; } [SugarColumn(ColumnName = "TopLimit", ColumnDescription = "上限值", DecimalDigits = 6, Length = 18, IsNullable = true)] public decimal? TopLimit { get; set; } [SugarColumn(ColumnName = "LowLimit", 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 = "CodeType", ColumnDescription = "参数分组类型", Length = 50)] public string CodeType { get; set; } = "Prod"; [SugarColumn(ColumnName = "Domain", ColumnDescription = "工厂域编码", Length = 50)] public string Domain { get; set; } = string.Empty; [SugarColumn(ColumnName = "CreateUser", ColumnDescription = "创建人", Length = 64, IsNullable = true)] public string? CreateUser { get; set; } [SugarColumn(ColumnName = "CreateTime", ColumnDescription = "创建时间", IsNullable = true)] public DateTime? CreateTime { get; set; } [SugarColumn(ColumnName = "UpdateUser", ColumnDescription = "更新人", Length = 64, IsNullable = true)] public string? UpdateUser { get; set; } [SugarColumn(ColumnName = "UpdateTime", ColumnDescription = "更新时间", IsNullable = true)] public DateTime? UpdateTime { get; set; } }