using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///用于送货
///
[SugarTable("EC_AwbInfo")]
public partial class EC_AwbInfo
{
public EC_AwbInfo(){
}
///
/// Desc:订单编号
/// Default:
/// Nullable:True
///
public int? Keyid {get;set;}
///
/// Desc:运单号
/// Default:
/// Nullable:True
///
public string TheAwb {get;set;}
///
/// Desc:送货人
/// Default:
/// Nullable:True
///
public string DeliverPerson {get;set;}
///
/// Desc:送货时间
/// Default:
/// Nullable:True
///
public DateTime? DeliverTime {get;set;}
///
/// Desc:备注
/// Default:
/// Nullable:True
///
public string Remark {get;set;}
///
/// Desc:收货类型编号
/// Default:
/// Nullable:True
///
public int? AcceptTypeId {get;set;}
///
/// Desc:指定货运公司
/// Default:
/// Nullable:True
///
public string AppointCourierCompany {get;set;}
///
/// Desc:取货地址
/// Default:
/// Nullable:True
///
public string FetchAddress {get;set;}
///
/// Desc:收货联系人
/// Default:
/// Nullable:True
///
public string FetchContacts {get;set;}
///
/// Desc:取货电话
/// Default:
/// Nullable:True
///
public string FetchPhoneNum {get;set;}
}
}