liaoxujun@qq.com
2024-03-04 c8f9d5977cc950592f0ccfea01237eccde506350
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/***********************************************************************
 *            Project: CoreCms
 *        ProjectName: 百分兵法管理系统                               
 *                Web: hhtp://chuanyin.com                     
 *             Author:                                        
 *              Email:                               
 *         CreateTime: 2021/7/12 0:34:54
 *        Description: 暂无
 ***********************************************************************/
 
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
 
namespace CoreCms.Net.Model.Entities
{
    /// <summary>
    /// 发货单表
    /// </summary>
    public partial class CoreCmsBillDelivery
    {
        /// <summary>
        /// 构造函数
        /// </summary>
        public CoreCmsBillDelivery()
        {
        }
        
        /// <summary>
        /// 发货单序列
        /// </summary>
        [Display(Name = "发货单序列")]
        
        [SugarColumn(IsPrimaryKey = true)]
        
        [Required(ErrorMessage = "请输入{0}")]
        [StringLength(maximumLength:20,ErrorMessage = "{0}不能超过{1}字")]
        
        
        public System.String deliveryId  { get; set; }
        
        
        /// <summary>
        /// 订单号
        /// </summary>
        [Display(Name = "订单号")]
        
        
        [StringLength(maximumLength:500,ErrorMessage = "{0}不能超过{1}字")]
        
        
        public System.String orderId  { get; set; }
        
        
        /// <summary>
        /// 物流公司编码
        /// </summary>
        [Display(Name = "物流公司编码")]
        
        
        [StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
        
        
        public System.String logiCode  { get; set; }
        
        
        /// <summary>
        /// 物流单号
        /// </summary>
        [Display(Name = "物流单号")]
        
        
        [StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
        
        
        public System.String logiNo  { get; set; }
        
        
        /// <summary>
        /// 第三方对接物流编码
        /// </summary>
        [Display(Name = "第三方对接物流编码")]
        
        
        [StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
        
        
        public System.String thirdPartylogiCode  { get; set; }
        
        
        /// <summary>
        /// 快递物流信息
        /// </summary>
        [Display(Name = "快递物流信息")]
        
        
        
        
        
        public System.String logiInformation  { get; set; }
        
        
        /// <summary>
        /// 快递是否不更新
        /// </summary>
        [Display(Name = "快递是否不更新")]
        
        [Required(ErrorMessage = "请输入{0}")]
        
        
        
        public System.Boolean logiStatus  { get; set; }
        
        
        /// <summary>
        /// 收货地区ID
        /// </summary>
        [Display(Name = "收货地区ID")]
        
        [Required(ErrorMessage = "请输入{0}")]
        
        
        
        public System.Int32 shipAreaId  { get; set; }
        
        
        /// <summary>
        /// 收货详细地址
        /// </summary>
        [Display(Name = "收货详细地址")]
        
        
        [StringLength(maximumLength:200,ErrorMessage = "{0}不能超过{1}字")]
        
        
        public System.String shipAddress  { get; set; }
        
        
        /// <summary>
        /// 收货人姓名
        /// </summary>
        [Display(Name = "收货人姓名")]
        
        
        [StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
        
        
        public System.String shipName  { get; set; }
        
        
        /// <summary>
        /// 收货电话
        /// </summary>
        [Display(Name = "收货电话")]
        
        
        [StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
        
        
        public System.String shipMobile  { get; set; }
        
        
        /// <summary>
        /// 状态
        /// </summary>
        [Display(Name = "状态")]
        
        [Required(ErrorMessage = "请输入{0}")]
        
        
        
        public System.Int32 status  { get; set; }
        
        
        /// <summary>
        /// 备注
        /// </summary>
        [Display(Name = "备注")]
        
        
        [StringLength(maximumLength:255,ErrorMessage = "{0}不能超过{1}字")]
        
        
        public System.String memo  { get; set; }
        
        
        /// <summary>
        /// 确认收货时间
        /// </summary>
        [Display(Name = "确认收货时间")]
        
        
        
        
        
        public System.DateTime? confirmTime  { get; set; }
        
        
        /// <summary>
        /// 创建时间
        /// </summary>
        [Display(Name = "创建时间")]
        
        [Required(ErrorMessage = "请输入{0}")]
        
        
        
        public System.DateTime createTime  { get; set; }
        
        
        /// <summary>
        /// 更新时间
        /// </summary>
        [Display(Name = "更新时间")]
        
        
        
        
        
        public System.DateTime? updateTime  { get; set; }
        
        
    }
}