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
670 B
36 lines
670 B
using FreeSql.DataAnnotations;
|
|
using System;
|
|
|
|
namespace BBWY.Server.Model.Db
|
|
{
|
|
|
|
[Table(Name = "giftordersku", DisableSyncStructure = true)]
|
|
public partial class GiftOrderSku {
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string GiftOrderId { get; set; }
|
|
|
|
|
|
public long? Id { get; set; }
|
|
|
|
|
|
public int? ItemTotal { get; set; }
|
|
|
|
[Column(DbType = "decimal(18,2)")]
|
|
public decimal? Price { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string ProductId { get; set; }
|
|
|
|
|
|
public long? ShopId { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string SkuId { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|