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.
46 lines
985 B
46 lines
985 B
3 years ago
|
using FreeSql.DataAnnotations;
|
||
|
using System;
|
||
|
|
||
|
namespace BBWY.Server.Model.Db
|
||
|
{
|
||
|
|
||
|
[Table(Name = "orderconsignee", DisableSyncStructure = true)]
|
||
|
public partial class OrderConsignee {
|
||
|
|
||
|
[Column(StringLength = 50, IsPrimary = true, IsNullable = false)]
|
||
|
public string OrderId { get; set; }
|
||
|
|
||
|
public string Address { get; set; }
|
||
|
|
||
|
[Column(StringLength = 30)]
|
||
|
public string City { get; set; }
|
||
|
|
||
|
[Column(StringLength = 50)]
|
||
|
public string ContactName { get; set; }
|
||
|
|
||
|
[Column(StringLength = 30)]
|
||
|
public string County { get; set; }
|
||
|
|
||
|
[Column(DbType = "datetime")]
|
||
|
public DateTime? CreateTime { get; set; }
|
||
|
|
||
|
[Column(StringLength = 50)]
|
||
|
public string Mobile { get; set; }
|
||
|
|
||
|
[Column(StringLength = 30)]
|
||
|
public string Province { get; set; }
|
||
|
|
||
|
[Column(StringLength = 50)]
|
||
|
public string TelePhone { get; set; }
|
||
|
|
||
|
[Column(StringLength = 30)]
|
||
|
public string Town { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// �Ƿ�����
|
||
|
/// </summary>
|
||
|
public bool? IsDecode { get; set; }
|
||
|
}
|
||
|
|
||
|
}
|