Administrator
2 天以前 dc5a767b5b8492496d154953019da7111982e283
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WMS.Entity.DataEntity
{
    ///<summary>
    ///库存冻结\解冻记录表
    ///</summary>
    [SugarTable("DataFreezeUnfreezeInfo")]
    public class DataFreezeUnfreezeInfo : BaseEntity
    {
        /// <summary>
        /// Desc:物料编码
        /// Default:
        /// Nullable:False
        /// </summary>           
        public string SkuNo { get; set; }
 
        /// <summary>
        /// Desc:物料名称
        /// Default:
        /// Nullable:False
        /// </summary>           
        public string SkuName { get; set; }
 
        /// <summary>
        /// Desc:规格
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string Standard { get; set; }
 
        /// <summary>
        /// Desc:类型
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string Type { get; set; }
 
        /// <summary>
        /// Desc:库存数量
        /// Default:记录冻结\解冻时库存的剩余数量
        /// Nullable:True
        /// </summary>           
        public decimal? Qty { get; set; }
 
        /// <summary>
        /// Desc:冻结\解冻数量
        /// Default:
        /// Nullable:True
        /// </summary>           
        public decimal? FrozenQty { get; set; }
 
        /// <summary>
        /// Desc:批次号
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string LotNo { get; set; }
 
        /// <summary>
        /// Desc:批次描述
        /// Default:
        /// Nullable:True
        /// </summary>   
        public string LotText { get; set; }
 
        /// <summary>
        /// Desc:供货批次
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string SupplierLot { get; set; }
 
        /// <summary>
        /// Desc:状态
        /// Default: 1:冻结 2:解冻
        /// Nullable:True
        /// </summary>           
        public int? Status { get; set; }
 
        /// <summary>
        /// Desc:备注
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string Demo { get; set; }
 
        /// <summary>
        /// Desc:自定义1
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string UDF1 { get; set; }
 
        /// <summary>
        /// Desc:自定义2
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string UDF2 { get; set; }
 
        /// <summary>
        /// Desc:自定义3
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string UDF3 { get; set; }
 
        /// <summary>
        /// Desc:自定义4
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string UDF4 { get; set; }
 
        /// <summary>
        /// Desc:自定义5
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string UDF5 { get; set; }
    }
}