Tjiny
2025-06-24 4c7cbee3e351f289fac1400e976bc8f10dc7e169
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using HH.WCS.Mobox3.RiDong.util;
using SqlSugar;
 
namespace HH.WCS.Mobox3.RiDong.models;
 
/// <summary>
/// 配盘单明细
/// </summary>
[SugarTable("TN_Distribution_CNTR_Detail")]
public  class TN_Distribution_CNTR_Detail : BaseModel
{
    /// <summary>
    ///  配盘单号
    /// </summary>
    public string S_DC_NO { get; set; }
    /// <summary>
    ///  容器编码
    /// </summary>
    public string S_CNTR_CODE { get; set; }
    public string S_CELL_NO { get; set; }
    public string S_ITEM_CODE { get; set; }
    public string S_ITEM_NAME { get; set; }
    public string S_ITEM_SPEC { get; set; }
    public string S_BATCH_NO { get; set; }
    public int N_ITEM_STATE { get; set; }
    public string S_ITEM_STATE { get; set; }
    public string S_SERIAL_NO { get; set; }
    public float F_QTY { get; set; }
    public string S_UOM { get; set; }
    public string S_STATE_PRE { get; set; }
    public int N_REVIEW_RESULT { get; set; }
    public string S_REVIEW_COMMENT { get; set; }
    public string S_DEPART_ID { get; set; }
    public string S_DEPART_NAME { get; set; }
    public string S_MODIFIER_ID { get; set; }
    public string S_MODIFIER_NAME { get; set; }
    public int N_CREATEMETHOD { get; set; }
    public string G_SOURCE_OBJ { get; set; }
    public string S_END_USER { get; set; }
    public string S_OWNER { get; set; }
    public string S_SUPPLIER_NO { get; set; }
    public string S_BS_TYPE { get; set; }
    // 来源单号  发货单号
    public string S_BS_NO { get; set; }
    public int N_BS_ROW_NO { get; set; }
    public string G_CG_DETAIL_ID { get; set; }
    public string S_WH_CODE { get; set; } = Settings.WHCode;
    public string S_AREA_CODE { get; set; }
    public float F_ACC_P_QTY { get; set; }
 
    public string S_EXT_ATTR1 { get; set; }
    /// <summary>
    ///  是否完成 0:未完成 ,1 :已完成
    /// </summary>
    public string IS_SORTING { get; set; }
}