using Api.Framework.Tools;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Weixin.WPHCirclePromotion.Enums;
namespace Weixin.WPHCirclePromotion.Entitys
{
class fl_plugin_wphcirclepromotion_goodsinfos : base_model
{
///
/// 商品id
///
public string goodsId { get; set; }
///
/// 商品标题
///
public string goodsName { get; set; }
///
/// 商品描述
///
public string goodsDesc { get; set; }
///
/// 商品图片链接
///
public string goodsMainPicture { get; set; }
///
/// 市场价(元)
///
public double marketPrice { get; set; }
///
/// 唯品价(元)
///
public double vipPrice { get; set; }
///
/// 佣金比例(%)
///
public double commissionRate { get; set; }
///
/// 佣金金额(元)
///
public double commission { get; set; }
///
/// 店铺名称
///
public string storeName { get; set; }
///
/// 优惠券门槛价格,单位为元
///
public double buy { get; set; }
///
/// 优惠金额
///
public double fav { get; set; }
///
/// 生成劵的总量
///
public long totalAmount { get; set; }
///
/// 发送状态,是否发送过
///
public StateType state { get; set; }
///
/// 采集的日期
///
public DateTime cur_time { get; set; }
/////
///// 产品数据的来源 GoodsSourceType枚举
/////
//public GoodsSourceType goods_source { get; set; }
}
}