2 changed files with 110 additions and 76 deletions
@ -1,74 +0,0 @@ |
|||||
using FreeSql.DatabaseModel;using System; |
|
||||
using System.Collections; |
|
||||
using System.Collections.Generic; |
|
||||
using System.Linq; |
|
||||
using System.Reflection; |
|
||||
using System.Threading.Tasks; |
|
||||
using Newtonsoft.Json; |
|
||||
using FreeSql.DataAnnotations; |
|
||||
|
|
||||
namespace BBWYB.Server.Model.Db { |
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 采购单Sku表
|
|
||||
/// </summary>
|
|
||||
[JsonObject(MemberSerialization.OptIn), Table(Name = "orderpurchaseskuinfo", DisableSyncStructure = true)] |
|
||||
public partial class Orderpurchaseskuinfo { |
|
||||
|
|
||||
[JsonProperty, Column(IsPrimary = true)] |
|
||||
public long Id { get; set; } |
|
||||
|
|
||||
[JsonProperty, Column(DbType = "datetime")] |
|
||||
public DateTime? CreateTime { get; set; } |
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 物流变更时间
|
|
||||
/// </summary>
|
|
||||
[JsonProperty, Column(DbType = "datetime")] |
|
||||
public DateTime? ExpressChangeTime { get; set; } |
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 物流状态
|
|
||||
/// </summary>
|
|
||||
[JsonProperty, Column(StringLength = 100)] |
|
||||
public string ExpressState { get; set; } |
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 店铺订单Id
|
|
||||
/// </summary>
|
|
||||
[JsonProperty, Column(StringLength = 100)] |
|
||||
public string OrderId { get; set; } |
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 采购订单Id
|
|
||||
/// </summary>
|
|
||||
[JsonProperty, Column(StringLength = 100)] |
|
||||
public string PurchaseOrderId { get; set; } |
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 采购商品Id(spu)
|
|
||||
/// </summary>
|
|
||||
[JsonProperty, Column(StringLength = 100)] |
|
||||
public string PurchaseProductId { get; set; } |
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 采购Sku
|
|
||||
/// </summary>
|
|
||||
[JsonProperty, Column(StringLength = 100)] |
|
||||
public string PurchaseSkuId { get; set; } |
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 采购Sku订单Id;1688 OrderEntryId
|
|
||||
/// </summary>
|
|
||||
[JsonProperty, Column(StringLength = 100)] |
|
||||
public string PurchaseSkuOrderId { get; set; } |
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 店铺Id
|
|
||||
/// </summary>
|
|
||||
[JsonProperty] |
|
||||
public long? ShopId { get; set; } |
|
||||
|
|
||||
} |
|
||||
|
|
||||
} |
|
Loading…
Reference in new issue