|
|
|
@ -93,343 +93,371 @@ namespace Myshipping.Application.Entity
|
|
|
|
|
[SugarColumn(ColumnName = "Priority")]
|
|
|
|
|
[Description("优先级")]
|
|
|
|
|
public string Priority{ get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ShipperName")]
|
|
|
|
|
[Description("发货人名称")]
|
|
|
|
|
public string ShipperName{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShipperName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ShipperAddress")]
|
|
|
|
|
[Description("发货人地址")]
|
|
|
|
|
public string ShipperAddress{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShipperAddress { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人国家
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ShipperCountry")]
|
|
|
|
|
[Description("发货人国家")]
|
|
|
|
|
public string ShipperCountry{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShipperCountry { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人省份
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ShipperProvince")]
|
|
|
|
|
[Description("发货人省份")]
|
|
|
|
|
public string ShipperProvince{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShipperProvince { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人城市
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ShipperCity")]
|
|
|
|
|
[Description("发货人城市")]
|
|
|
|
|
public string ShipperCity{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShipperCity { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人区县
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ShipperCounty")]
|
|
|
|
|
[Description("发货人区县")]
|
|
|
|
|
public string ShipperCounty{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShipperCounty { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人邮政编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ShipperPostCode")]
|
|
|
|
|
[Description("发货人邮政编码")]
|
|
|
|
|
public string ShipperPostCode{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShipperPostCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人联系人名
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ShipperFirstName")]
|
|
|
|
|
[Description("发货人联系人名")]
|
|
|
|
|
public string ShipperFirstName{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShipperFirstName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人联系人姓
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ShipperLastName")]
|
|
|
|
|
[Description("发货人联系人姓")]
|
|
|
|
|
public string ShipperLastName{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShipperLastName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人电话国家代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ShipperPhoneCountryCode")]
|
|
|
|
|
[Description("发货人电话国家代码")]
|
|
|
|
|
public string ShipperPhoneCountryCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人电话区号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ShipperPhoneCode")]
|
|
|
|
|
[Description("发货人电话区号")]
|
|
|
|
|
public string ShipperPhoneCode{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShipperPhoneCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人电话
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ShipperPhone")]
|
|
|
|
|
[Description("发货人电话")]
|
|
|
|
|
public string ShipperPhone{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShipperPhone { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人分机号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ShipperPhoneExtension")]
|
|
|
|
|
[Description("发货人分机号")]
|
|
|
|
|
public string ShipperPhoneExtension{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShipperPhoneExtension { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ConsigneeName")]
|
|
|
|
|
[Description("收货人名称")]
|
|
|
|
|
public string ConsigneeName{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ConsigneeName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ConsigneeAddress")]
|
|
|
|
|
[Description("收货人地址")]
|
|
|
|
|
public string ConsigneeAddress{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ConsigneeAddress { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人国家
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ConsigneeCountry")]
|
|
|
|
|
[Description("收货人国家")]
|
|
|
|
|
public string ConsigneeCountry{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ConsigneeCountry { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人省份
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ConsigneeProvince")]
|
|
|
|
|
[Description("收货人省份")]
|
|
|
|
|
public string ConsigneeProvince{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ConsigneeProvince { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人城市
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ConsigneeCity")]
|
|
|
|
|
[Description("收货人城市")]
|
|
|
|
|
public string ConsigneeCity{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ConsigneeCity { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人区县
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ConsigneeCounty")]
|
|
|
|
|
[Description("收货人区县")]
|
|
|
|
|
public string ConsigneeCounty{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ConsigneeCounty { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人邮政编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ConsigneePostCode")]
|
|
|
|
|
[Description("收货人邮政编码")]
|
|
|
|
|
public string ConsigneePostCode{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ConsigneePostCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人联系人名
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ConsigneeFirstName")]
|
|
|
|
|
[Description("收货人联系人名")]
|
|
|
|
|
public string ConsigneeFirstName{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ConsigneeFirstName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人联系人姓
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ConsigneeLastName")]
|
|
|
|
|
[Description("收货人联系人姓")]
|
|
|
|
|
public string ConsigneeLastName{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ConsigneeLastName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人电话国家代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ConsigneePhoneCountryCode")]
|
|
|
|
|
[Description("收货人电话国家代码")]
|
|
|
|
|
public string ConsigneePhoneCountryCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人电话区号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ConsigneePhoneCode")]
|
|
|
|
|
[Description("收货人电话区号")]
|
|
|
|
|
public string ConsigneePhoneCode{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ConsigneePhoneCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人电话
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ConsigneePhone")]
|
|
|
|
|
[Description("收货人电话")]
|
|
|
|
|
public string ConsigneePhone{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ConsigneePhone { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人分机号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ConsigneePhoneExtension")]
|
|
|
|
|
[Description("收货人分机号")]
|
|
|
|
|
public string ConsigneePhoneExtension{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string ConsigneePhoneExtension { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知人名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "NotifypartName")]
|
|
|
|
|
[Description("通知人名称")]
|
|
|
|
|
public string NotifypartName{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string NotifypartName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知人地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "NotifypartAddress")]
|
|
|
|
|
[Description("通知人地址")]
|
|
|
|
|
public string NotifypartAddress{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string NotifypartAddress { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知人国家
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "NotifypartCountry")]
|
|
|
|
|
[Description("通知人国家")]
|
|
|
|
|
public string NotifypartCountry{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string NotifypartCountry { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知人省份
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "NotifypartProvince")]
|
|
|
|
|
[Description("通知人省份")]
|
|
|
|
|
public string NotifypartProvince{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string NotifypartProvince { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知人城市
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "NotifypartCity")]
|
|
|
|
|
[Description("通知人城市")]
|
|
|
|
|
public string NotifypartCity{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string NotifypartCity { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知人区县
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "NotifypartCounty")]
|
|
|
|
|
[Description("通知人区县")]
|
|
|
|
|
public string NotifypartCounty{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string NotifypartCounty { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知人邮政编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "NotifypartPostCode")]
|
|
|
|
|
[Description("通知人邮政编码")]
|
|
|
|
|
public string NotifypartPostCode{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string NotifypartPostCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知人联系人名
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "NotifypartFirstName")]
|
|
|
|
|
[Description("通知人联系人名")]
|
|
|
|
|
public string NotifypartFirstName{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string NotifypartFirstName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知人联系人姓
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "NotifypartLastName")]
|
|
|
|
|
[Description("通知人联系人姓")]
|
|
|
|
|
public string NotifypartLastName{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string NotifypartLastName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知人电话国家代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "NotifypartPhoneCountryCode")]
|
|
|
|
|
[Description("通知人电话国家代码")]
|
|
|
|
|
public string NotifypartPhoneCountryCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知人电话区号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "NotifypartPhoneCode")]
|
|
|
|
|
[Description("通知人电话区号")]
|
|
|
|
|
public string NotifypartPhoneCode{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string NotifypartPhoneCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知人电话
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "NotifypartPhone")]
|
|
|
|
|
[Description("通知人电话")]
|
|
|
|
|
public string NotifypartPhone{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string NotifypartPhone { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知人分机号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "NotifypartPhoneExtension")]
|
|
|
|
|
[Description("通知人分机号")]
|
|
|
|
|
public string NotifypartPhoneExtension{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string NotifypartPhoneExtension { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱公司名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BookingName")]
|
|
|
|
|
[Description("订舱公司名称")]
|
|
|
|
|
public string BookingName{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string BookingName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱公司地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BookingAddress")]
|
|
|
|
|
[Description("订舱公司地址")]
|
|
|
|
|
public string BookingAddress{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string BookingAddress { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱公司国家
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BookingCountry")]
|
|
|
|
|
[Description("订舱公司国家")]
|
|
|
|
|
public string BookingCountry{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string BookingCountry { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱公司省份
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BookingProvince")]
|
|
|
|
|
[Description("订舱公司省份")]
|
|
|
|
|
public string BookingProvince{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string BookingProvince { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱公司城市
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BookingCity")]
|
|
|
|
|
[Description("订舱公司城市")]
|
|
|
|
|
public string BookingCity{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string BookingCity { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱公司区县
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BookingCounty")]
|
|
|
|
|
[Description("订舱公司区县")]
|
|
|
|
|
public string BookingCounty{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string BookingCounty { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱公司邮政编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BookingPostCode")]
|
|
|
|
|
[Description("订舱公司邮政编码")]
|
|
|
|
|
public string BookingPostCode{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string BookingPostCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱公司联系人名
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BookingFirstName")]
|
|
|
|
|
[Description("订舱公司联系人名")]
|
|
|
|
|
public string BookingFirstName{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string BookingFirstName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱公司联系人姓
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BookingLastName")]
|
|
|
|
|
[Description("订舱公司联系人姓")]
|
|
|
|
|
public string BookingLastName{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string BookingLastName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱公司电话国家代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BookingPhoneCountryCode")]
|
|
|
|
|
[Description("订舱公司电话国家代码")]
|
|
|
|
|
public string BookingPhoneCountryCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱公司电话区号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BookingPhoneCode")]
|
|
|
|
|
[Description("订舱公司电话区号")]
|
|
|
|
|
public string BookingPhoneCode{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string BookingPhoneCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱公司电话
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BookingPhone")]
|
|
|
|
|
[Description("订舱公司电话")]
|
|
|
|
|
public string BookingPhone{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string BookingPhone { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱公司分机号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BookingPhoneExtension")]
|
|
|
|
|
[Description("订舱公司分机号")]
|
|
|
|
|
public string BookingPhoneExtension{ get; set; }
|
|
|
|
|
|
|
|
|
|
public string BookingPhoneExtension { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 品名货描
|
|
|
|
|
/// </summary>
|
|
|
|
|