using SqlSugar; namespace MES.Service.Modes; /// /// 生产通知单表 /// [SugarTable("MES_PRODUCTION_NOTICE")] public class MesProductionNotice { /// /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public decimal Id { get; set; } // 假设ID为整型,根据实际情况调整 /// /// 编码 /// [SugarColumn(ColumnName = "FNUMBER")] public string? FNumber { get; set; } /// /// 名称 /// [SugarColumn(ColumnName = "FNAME")] public string? FName { get; set; } /// /// 型号 /// [SugarColumn(ColumnName = "F_XH")] public string? FXh { get; set; } /// /// 数量 /// [SugarColumn(ColumnName = "F_SL")] public decimal? FSl { get; set; } // 假设数量为整型,根据实际情况调整 /// /// 客户 /// [SugarColumn(ColumnName = "F_KH")] public string? FKh { get; set; } /// /// 描述 /// [SugarColumn(ColumnName = "DESCRIPTION")] public string? Description { get; set; } // 如果需要忽略某些字段,可以使用 [SugarColumn(IsIgnore = true)] 特性 // [SugarColumn(IsIgnore = true)] // public string? SomeIgnoredField { get; set; } [SugarColumn(IsIgnore = true)] public string? Type { get; set; } }