wbc
2025-05-30 1167bba23716eeda7ad6342b8d6ca736adca16c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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; }
}