using Api.Framework.Tools;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static CouponsSend.Entitys.Enum;
namespace CouponsSend.Entitys
{
public class fl_plugin_couponssend_goodsinfos : base_model
{
///
/// 商品id
///
public string goods_id { get; set; }
///
/// 商品标题
///
public string goods_name { get; set; }
///
/// 商品描述
///
public string goods_desc { get; set; }
///
/// 商品图片链接
///
public string goods_thumbnail_url { get; set; }
///
/// 已售卖件数
///
public int sold_quantity { get; set; }
///
/// 商品单价,单位为元
///
public double normal_price { get; set; }
///
/// 券后价
///
public double actual_price { get; set; }
///
/// 店铺名
///
public string mall_name { get; set; }
///
/// 类目id
///
public string category_id { get; set; }
///
/// 优惠券面额,单位为元
///
public double coupon_discount { get; set; }
///
/// 优惠券剩余数量
///
public string coupon_remain_quantity { get; set; }
///
/// 优惠券活动ID
///
public string goods_quan { get; set; }
///
/// 佣金比例,百分比
///
public double promotion_rate { get; set; }
///
/// 购买链接 转连之后
///
public string shopping_url { get; set; }
///
/// 发送状态,是否发送过
///
public StateType state { get; set; }
///
/// 采集的日期
///
public DateTime cur_time { get; set; }
}
}