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.
29 lines
642 B
29 lines
642 B
using FreeSql.DataAnnotations;
|
|
using System;
|
|
|
|
namespace BBWY.Server.Model.Db
|
|
{
|
|
|
|
[ Table(Name = "ordercoupon", DisableSyncStructure = true)]
|
|
public partial class OrderCoupon {
|
|
|
|
[ Column(DbType = "bigint(1)", IsPrimary = true)]
|
|
public long Id { get; set; }
|
|
|
|
[ Column(DbType = "decimal(20,2)")]
|
|
public decimal? CouponPrice { get; set; }
|
|
|
|
[ Column(StringLength = 50)]
|
|
public string CouponType { get; set; }
|
|
|
|
[ Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[ Column(StringLength = 50)]
|
|
public string OrderId { get; set; }
|
|
|
|
[ Column(StringLength = 50)]
|
|
public string SkuId { get; set; }
|
|
}
|
|
|
|
}
|
|
|