3 changed files with 63 additions and 12 deletions
@ -0,0 +1,29 @@ |
|||
using FreeSql.DataAnnotations; |
|||
|
|||
namespace BBWYB.Server.Model.Db |
|||
{ |
|||
[Table(Name = "spuoptimizationproductskuupdatequotedpricerecord", DisableSyncStructure = true)] |
|||
public partial class SpuOptimizationProductSkuUpdateQuotedPriceRecord |
|||
{ |
|||
|
|||
[Column(DbType = "bigint", IsPrimary = true)] |
|||
public long Id { get; set; } |
|||
|
|||
[Column(StringLength = 50)] |
|||
public string BargainTeamId { get; set; } |
|||
|
|||
[Column(DbType = "datetime")] |
|||
public DateTime? CreateTime { get; set; } |
|||
|
|||
[Column(StringLength = 50)] |
|||
public string PurchaseSkuId { get; set; } |
|||
|
|||
[Column(DbType = "bigint")] |
|||
public long? SpuOptimizationTaskId { get; set; } |
|||
|
|||
[Column(StringLength = 50)] |
|||
public string UserId { get; set; } |
|||
|
|||
} |
|||
|
|||
} |
Loading…
Reference in new issue