/** * 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 { /// /// 用于送货 /// [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; /// /// 订单编号 /// public int? Keyid { set { _keyid = value; } get { return _keyid; } } /// /// 运单号 /// public string TheAwb { set { _theawb = value; } get { return _theawb; } } /// /// 送货人 /// public string DeliverPerson { set { _deliverperson = value; } get { return _deliverperson; } } /// /// 送货时间 /// public DateTime? DeliverTime { set { _delivertime = value; } get { return _delivertime; } } /// /// 备注 /// public string Remark { set { _remark = value; } get { return _remark; } } /// /// 收货类型编号 /// public int AcceptTypeId { get; set; } /// /// 指定货运公司 /// public string AppointCourierCompany { get; set; } /// /// 取货地址 /// public string FetchAddress { get; set; } /// /// 收货联系人 /// public string FetchContacts { get; set; } /// /// 取货电话 /// public string FetchPhoneNum { get; set; } #endregion Model } }