using System.ComponentModel.DataAnnotations; namespace CoreCms.Net.DTO { /// /// 秒杀列表返回dto数据层 /// public class GroupPurchaseSeckillDTO { /// /// 序列 /// public System.Int32 id { get; set; } /// /// 促销名称 /// public System.String name { get; set; } /// /// 类型 /// public System.Int32 type { get; set; } /// /// 排序 /// public System.Int32 sort { get; set; } /// /// 每人限购数量 /// public System.Int32 maxNums { get; set; } /// /// 每个商品活动数量 /// public System.Int32 maxGoodsNums { get; set; } /// /// 最大领取数量 /// public System.Int32 maxRecevieNums { get; set; } /// /// 开始时间 /// public System.DateTime startTime { get; set; } /// /// 结束时间 /// public System.DateTime endTime { get; set; } /// /// 是否排他 /// public System.Boolean isExclusive { get; set; } /// /// 是否自动领取 /// public System.Boolean isAutoReceive { get; set; } /// /// 是否开启 /// public System.Boolean isEnable { get; set; } /// /// 有效天数 /// public System.Int32 effectiveDays { get; set; } /// /// 有效小时 /// public System.Int32 effectiveHours { get; set; } /// /// 倒计时 /// public System.Int32 timestamp { get; set; } /// /// 状态 /// public System.Int32 startStatus { get; set; } /// /// 商品描述 /// public string goodBrief { get; set; } /// /// 商品名称 /// public string goodName { get; set; } /// /// 商品缩略图 /// public string goodThumbnail { get; set; } /// /// 商品图集 /// public string goodImages { get; set; } /// /// 商品库存 /// public int goodStock { get; set; } /// /// 商品浏览量 /// public int goodViewCount { get; set; } /// /// 商品单位 /// public string goodUnit { get; set; } /// /// 商品市场价 /// public decimal mktPrice { get; set; } /// /// 商品价格 /// public decimal price { get; set; } } }