wbc
2024-12-21 65c664b9b67ddc1137885551e04fa4aeebdc482e
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
28
29
30
31
32
33
34
35
36
37
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; }
}