wbc
2025-02-12 b2bc0cccd77524b3ba1f05d5f7854324ce62ba2e
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
38
39
40
using SqlSugar;
 
namespace MES.Service.Dto.service;
 
public class InventoryItemDetail
{
    [SugarColumn(ColumnName = "WORK_NO")] public string WorkNo { get; set; }
 
    [SugarColumn(ColumnName = "WORK_LINE")]
    public string WorkLine { 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 = "SUM_QUANTITY")]
    public decimal SumQuantity { get; set; }
 
    [SugarColumn(ColumnName = "UNIT")] public string Unit { get; set; }
 
    [SugarColumn(ColumnName = "SUPP_NO")] public string SuppNo { get; set; }
 
    [SugarColumn(ColumnName = "QUANTITY")] public decimal Quantity { get; set; }
 
    [SugarColumn(ColumnName = "REFUNDABLE_QUANTITY")]
    public decimal RefundableQuantity { get; set; }
 
    [SugarColumn(ColumnName = "CBILL_NO")] public string CbillNo { get; set; }
 
    [SugarColumn(ColumnName = "TASK_NO")] public string TaskNo { get; set; }
 
    [SugarColumn(ColumnName = "BILL_NO")] public string BillNo { get; set; }
 
    [SugarColumn(ColumnName = "CREATE_DATE")]
    public string CreateDate { get; set; } // 如果需要日期处理,可以考虑使用 DateTime 类型
}