jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
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
using HH.WMS.Entitys.Common;
/********************************************************************************
 
** auth: DBS
 
** date: 2018/12/11 11:31:24
 
** desc: 尚未编写描述
 
** Ver.:  V1.0.0
 
*********************************************************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.Entitys.PrintDataSource
{
    public class OutPackTagEntity:BaseEntity
    {
        /// <summary>
        /// 箱号
        /// </summary>
        public string PackNo { get; set; }
        /// <summary>
        /// 总共箱数
        /// </summary>
        public int TotalNum { get; set; }
        /// <summary>
        /// 当前箱数
        /// </summary>
        public int CurrentNum { get; set; }
 
        /// <summary>
        /// 收货人名称
        /// </summary>
        public string ReceiverName { get; set; }
 
        /// <summary>
        /// 收货人手机
        /// </summary>
        public string ReceiverPhone { get; set; }
        /// <summary>
        /// 收货地址
        /// </summary>
        public string ReceiverAddress { get; set; }
 
        /// <summary>
        /// 物流
        /// </summary>
        public string Logistics { get; set; }
 
        /// <summary>
        /// 省
        /// </summary>
        public string Province { get; set; }
        /// <summary>
        /// 市
        /// </summary>
        public string City { get; set; }
        /// <summary>
        /// 区
        /// </summary>
        public string Area { get; set; }
        /// <summary>
        /// 镇
        /// </summary>
        public string Town { get; set; }
    }
}