using SqlSugar; namespace MES.Service.Dto.service; [SugarTable("V_QS_RK_DAA002")] // Specifies the table/view name public class RkDaa002 { [SugarColumn(ColumnName = "BILL_NO")] public string? BillNo { get; set; } [SugarColumn(ColumnName = "QUANTITY")] public decimal? Quantity { get; set; } [SugarColumn(ColumnName = "CBILL_NO")] public string? CBillNo { get; set; } [SugarColumn(ColumnName = "CREATE_DATE")] public DateTime? CreateDate { get; set; } [SugarColumn(ColumnName = "ITEM_IN_ID")] public decimal? ItemInId { get; set; } [SugarColumn(ColumnName = "ITEM_ID")] public decimal? ItemId { get; set; } [SugarColumn(ColumnName = "ITEM_NO")] public string? ItemNo { get; set; } [SugarColumn(ColumnName = "ITEM_NAME")] public string? ItemName { get; set; } [SugarColumn(ColumnName = "ITEM_MODEL")] public string? ItemModel { get; set; } [SugarColumn(ColumnName = "DAA020")] public string? Daa020 { get; set; } [SugarColumn(ColumnName = "DAA015")] public string? Daa015 { get; set; } }