You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.4 KiB
74 lines
1.4 KiB
using FreeSql.DataAnnotations;
|
|
|
|
namespace BBWYB.Server.Model.Db
|
|
{
|
|
|
|
/// <summary>
|
|
/// 订单收货信息表
|
|
/// </summary>
|
|
[Table(Name = "orderconsignee", DisableSyncStructure = true)]
|
|
public partial class OrderConsignee {
|
|
|
|
[Column(StringLength = 50, IsPrimary = true, IsNullable = false)]
|
|
public string OrderId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 收货地址
|
|
/// </summary>
|
|
|
|
public string Address { get; set; }
|
|
|
|
/// <summary>
|
|
/// 市
|
|
/// </summary>
|
|
[Column(StringLength = 30)]
|
|
public string City { get; set; }
|
|
|
|
/// <summary>
|
|
/// 联系人
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string ContactName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 区
|
|
/// </summary>
|
|
[Column(StringLength = 30)]
|
|
public string County { get; set; }
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否解码
|
|
/// </summary>
|
|
|
|
public bool? IsDecode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 手机号
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string Mobile { get; set; }
|
|
|
|
/// <summary>
|
|
/// 省
|
|
/// </summary>
|
|
[Column(StringLength = 30)]
|
|
public string Province { get; set; }
|
|
|
|
/// <summary>
|
|
/// 做记号
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string TelePhone { get; set; }
|
|
|
|
/// <summary>
|
|
/// 镇
|
|
/// </summary>
|
|
[Column(StringLength = 30)]
|
|
public string Town { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|