using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace CoreCms.Net.DTO
{
///
/// 拼团列表返回
///
public class PinTuanListDTO
{
///
/// 拼团序列
///
public System.Int32 id { get; set; }
///
/// 商品序列
///
public System.Int32 goodsId { get; set; }
///
/// 拼团排序
///
public System.Int32 sortId { get; set; }
///
/// 拼团名称
///
public string name { get; set; }
///
/// 拼团单数
///
public System.Int32 pinTuanRecordNums { get; set; }
///
/// 拼团销量
///
public System.Int32 buyPinTuanCount { get; set; }
///
/// 多少人团
///
public System.Int32 peopleNumber { get; set; }
///
/// 倒计时
///
public System.Int32 timestamp { get; set; }
///
/// 开始时间
///
public System.DateTime startTime { get; set; }
///
/// 结束时间
///
public System.DateTime endTime { get; set; }
///
/// 优惠金额
///
public System.Decimal discountAmount { get; set; }
///
/// 每人限购数量
///
public System.Int32 maxNums { get; set; }
///
/// 每个商品活动数量
///
public System.Int32 maxGoodsNums { 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 pinTuanPrice { get; set; }
}
}