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.
36 lines
907 B
36 lines
907 B
using FreeSql.DataAnnotations;
|
|
|
|
namespace BBWYB.Server.Model.Db
|
|
{
|
|
|
|
[Table(Name = "orderpurchaseinfo", DisableSyncStructure = true)]
|
|
public partial class OrderPurchaseInfo
|
|
{
|
|
|
|
[Column(StringLength = 50, IsPrimary = true, IsNullable = false)]
|
|
public string OrderId { get; set; }
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string PurchaseAccountId { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string PurchaseAccountName { get; set; }
|
|
|
|
[Column(MapType = typeof(int?))]
|
|
public Enums.PurchaseMethod? PurchaseMethod { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string PurchaseOrderId { get; set; }
|
|
|
|
[Column(MapType = typeof(int?))]
|
|
public Enums.Platform? PurchasePlatform { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string PurchaserName { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|