username@email.com
2025-05-21 a980cd04341d71216e0f59bd4b7327fe9fc50032
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
/**  
* EC_AwbInfo.cs
*
* 功 能: 送货信息实体类
* 类 名: EC_AwbInfo
*
* Ver    变更日期             负责人  变更内容
* ───────────────────────────────────
* V0.01  2013-5-18 10:45      吴崎均   初版
*
*
*
*
*/
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.Infrastructure.Domain;
 
namespace CY.Model
{
 
    /// <summary>
    /// 用于送货
    /// </summary>
    [Serializable]
    public partial class EC_AwbInfo : IAggregateRoot
    {
        public EC_AwbInfo()
        { }
        #region Model
        private int? _keyid;
        private string _theawb;
        private string _deliverperson;
        private DateTime? _delivertime;
        private string _remark;
        /// <summary>
        /// 订单编号
        /// </summary>
        public int? Keyid
        {
            set { _keyid = value; }
            get { return _keyid; }
        }
        /// <summary>
        /// 运单号
        /// </summary>
        public string TheAwb
        {
            set { _theawb = value; }
            get { return _theawb; }
        }
        /// <summary>
        /// 送货人
        /// </summary>
        public string DeliverPerson
        {
            set { _deliverperson = value; }
            get { return _deliverperson; }
        }
        /// <summary>
        /// 送货时间
        /// </summary>
        public DateTime? DeliverTime
        {
            set { _delivertime = value; }
            get { return _delivertime; }
        }
        /// <summary>
        /// 备注
        /// </summary>
        public string Remark
        {
            set { _remark = value; }
            get { return _remark; }
        }
 
        /// <summary>
        /// 收货类型编号
        /// </summary>
        public int AcceptTypeId { get; set; }
 
        /// <summary>
        /// 指定货运公司
        /// </summary>
        public string AppointCourierCompany { get; set; }
 
        /// <summary>
        /// 取货地址
        /// </summary>
        public string FetchAddress { get; set; }
 
        /// <summary>
        /// 收货联系人
        /// </summary>
        public string FetchContacts { get; set; }
 
        /// <summary>
        /// 取货电话
        /// </summary>
        public string FetchPhoneNum { get; set; }
        #endregion Model
 
    }
}