username@email.com
2024-10-29 3f91a6737fc06b45461ce11eae5660cbbf766f7e
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
/***********************************************************************
 *            Project: baifenBinfa
 *        ProjectName: 百分兵法管理系统                               
 *                Web: http://chuanyin.com                     
 *             Author:                                        
 *              Email:                               
 *         CreateTime: 2021/7/12 0:34:54
 *        Description: 暂无
 ***********************************************************************/
 
using Chuanyin.Attribute;
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; }
 
        /// <summary>
        /// SendDistributionID 发货经销商ID
        /// </summary>
        [SugarColumn(ColumnDescription = "发货经销商ID")]
        public int?  sendDistributionID { get; set; }
 
        /// <summary>
        /// 送货代理商用户ID
        /// </summary>    
        public int? sendDistributionUserID { get; set; }
 
        /// <summary>
        /// sendDistributionAccept 经销商发货确认状态
        /// </summary>
        [SugarColumn(ColumnDescription = "经销商发货确认状态")]
        public sendDistributionAcceptType? sendDistributionAccept { get; set; }
 
 
 
 
    }
    /// <summary>
    /// 供应商送货确认状态
    /// </summary>
   public  enum sendDistributionAcceptType
    {
       
        /// <summary>
        /// 订单已被创建,等待处理。
        /// </summary>
        [Description("接受")]
        Accepted,
 
        /// <summary>
        /// 订单商品已打包,准备或已经发出。
        /// </summary>
        [Description("发货")]
        Shipped,
 
        /// <summary>
        /// 订单商品已成功送达客户手中。 客户确认收货
        /// </summary>
        [Description("送达")]
        Delivered,
 
        /// <summary>
        /// 订单被用户或系统取消。
        /// </summary>
        [Description("取消")]
        Cancelled,
 
        /// <summary>
        /// 订单处理超过了预定的时间限制,自动取消。
        /// </summary>
        [Description("超时")]
        TimedOut,
 
        /// <summary>
        /// 等待确认接受
        /// </summary>
        [Description("等待确认接受")]
        NoAccted,
 
        /// <summary>
        /// 奖励确认
        /// </summary>
        [Description("奖励确认")]
        OderFreeComplete,
 
 
 
    }
 
 
}