old_flsystem/应用/Weixin.WPHCirclePromotion/Entitys/fl_plugin_wphcirclepromotio...

75 lines
2.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
{
/// <summary>
/// 商品id
/// </summary>
public string goodsId { get; set; }
/// <summary>
/// 商品标题
/// </summary>
public string goodsName { get; set; }
/// <summary>
/// 商品描述
/// </summary>
public string goodsDesc { get; set; }
/// <summary>
/// 商品图片链接
/// </summary>
public string goodsMainPicture { get; set; }
/// <summary>
/// 市场价(元)
/// </summary>
public double marketPrice { get; set; }
/// <summary>
/// 唯品价(元)
/// </summary>
public double vipPrice { get; set; }
/// <summary>
/// 佣金比例(%
/// </summary>
public double commissionRate { get; set; }
/// <summary>
/// 佣金金额(元)
/// </summary>
public double commission { get; set; }
/// <summary>
/// 店铺名称
/// </summary>
public string storeName { get; set; }
/// <summary>
/// 优惠券门槛价格,单位为元
/// </summary>
public double buy { get; set; }
/// <summary>
/// 优惠金额
/// </summary>
public double fav { get; set; }
/// <summary>
/// 生成劵的总量
/// </summary>
public long totalAmount { get; set; }
/// <summary>
/// 发送状态,是否发送过
/// </summary>
public StateType state { get; set; }
/// <summary>
/// 采集的日期
/// </summary>
public DateTime cur_time { get; set; }
///// <summary>
///// 产品数据的来源 GoodsSourceType枚举
///// </summary>
//public GoodsSourceType goods_source { get; set; }
}
}