using Api.Framework.Tools;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Weixin.SNCirclePromotion.Entitys
{
public class fl_plugin_sncirclepromotion_goodsinfos : base_model
{
///
/// 商品编码
///
public string goodsid { get; set; }
///
/// 供应编码
///
public string supplierCode { get; set; }
///
/// 价格
///
public double vipPrice { get; set; }
///
/// 店铺名称
///
public string supplierName { get; set; }
///
/// 佣金比例
///
public double commissionRate { get; set; }
///
/// 商品标题
///
public string goodsname { get; set; }
///
/// 商品介绍
///
public string goodsdesc { get; set; }
///
/// 商品图片
///
public string picurl { get; set; }
///
/// 购买地址
///
public string buyUrl { get; set; }
///
/// 已售
///
public int sold_quantity { get; set; }
///
/// 优惠券基数
///
public double coupon_min_order_amount { get; set; }
///
/// 优惠券面额
///
public double coupon_discount { get; set; }
///
/// 优惠券地址
///
public string couponUrl { get; set; }
///
/// 采集日期
///
public DateTime cur_time { get; set; }
///
/// 当前状态
///
public StateType state { get; set; }
///
/// 商品来源
///
public GoodsSourceType goods_source { get; set; }
}
}