hudong
2025-06-19 511d159574c3de94d8d3e43da9f5485f764fa7c8
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
using HH.WCS.Mobox3.pinggao.models;
using SqlSugar;
using System;
using System.Collections.Generic;
 
namespace HH.WCS.Mobox3.pinggao
{
    [SugarTable("TN_Picking_Order")]
    public partial class TN_Ll_Order : BaseModel
    {
        /// <summary>
        /// ³ö¿âµ¥ºÅ
        /// </summary>
        public string S_NO { get; set; } 
        /// <summary>
        /// Äê·Ý
        /// </summary>
        public string S_WLPZNF { get; set; }
        public string S_WLPZND { get; set; } = "2025";
        /// <summary>
        /// ²Ö¿â±àÂë
        /// </summary>
        public string S_WH_CODE { get; set; } = util.Settings.WHCode;
        /// <summary>
        /// ÒµÎñ״̬
        /// </summary>
        public int N_B_STATE { get; set; } = 0;
        /// <summary>
        /// À´Ô´ÀàÐÍ
        /// </summary>
        public string S_BS_TYPE { get; set; }
        /// <summary>
        /// À´Ô´µ¥ºÅ
        /// </summary>
        public string S_BS_NO { get; set; }
        /// <summary>
        /// ³ö¿â²ßÂÔ
        /// </summary>
        public string S_OUT_STRATEGY { get; set; }
        /// <summary>
        /// ³ö¿â·½Ïò
        /// </summary>
        public string S_OUT_TO { get; set; }
        /// <summary>
        /// ¿âÇø±àÂë
        /// </summary>
        public string S_AREA_CODE { get; set; }
        /// <summary>
        /// ÊÇ·ñ±¸ÁÏ
        /// </summary>
        public string S_STOCK_UP { get; set; }
        /// <summary>
        /// »õλ±àÂë
        /// </summary>
        public string S_END_LOC { get; set; }
        public string S_END_AREA { get; set; }
        public string S_OUT_TYPE { get; set; }
        /// <summary>
        /// ¹¤³§
        /// </summary>
        public string S_FACTORY { get; set; }
        public string UNAME { get; set; }
        public string S_CBZX { get; set; }
        public string S_LRZX { get; set; }
        public string S_ZZKM { get; set; }
        public string BUDAT { get; set; }
        public string BLDAT { get; set; }
 
 
        [SugarColumn(IsIgnore = true)]
        [Navigate(NavigateType.OneToMany, nameof(TN_Ll_detail.S_DO_NO), nameof(S_NO))]
        public List<TN_Ll_detail> Details { get; set; }
 
    }
}