| 12345678910111213141516171819202122232425 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S0.Manufacturing;
- /// <summary>
- /// 通用码表(源平台 GeneralizedCodeMaster)。
- /// 用于提供 Op/Type 等字段的中文/描述展示(仅查询展示,不作为业务实体入口)。
- /// </summary>
- [SugarTable("ado_s0_mfg_generalized_code_master", "通用码表")]
- public class AdoS0GeneralizedCodeMaster
- {
- [SugarColumn(ColumnName = "id", ColumnDescription = "主键", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")]
- public long Id { get; set; }
- [SugarColumn(ColumnName = "domain", ColumnDescription = "工厂域编码", Length = 50)]
- public string Domain { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "fld_name", ColumnDescription = "字段名", Length = 100)]
- public string FldName { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "val", ColumnDescription = "码值", Length = 100)]
- public string Val { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "comments", ColumnDescription = "描述/注释", Length = 255, IsNullable = true)]
- public string? Comments { get; set; }
- }
|