using SqlSugar; namespace MES.Service.Modes; /// /// 首检不良信息 /// [SugarTable("V_XJ_BAD_REASON")] public class XJBadReason { /// /// 物料ID /// [SugarColumn(ColumnName = "BILL_NO")] public string? BillNo { get; set; } /// /// 不良原因 /// [SugarColumn(ColumnName = "REASON")] public string? Reason { get; set; } }