using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
|
namespace YouZanSDKStandard.Api.Domain
|
{
|
/// <summary>
|
/// 有赞优惠列表
|
/// </summary>
|
[Serializable]
|
public class OrderTradePromotionOpenModel
|
{
|
/// <summary>
|
///该优惠活动的ID
|
/// </summary>
|
public int promotion_id { get; set; }
|
/// <summary>
|
///该优惠活动的名称
|
/// </summary>
|
public string promotion_name { get; set; }
|
/// <summary>
|
///优惠的类型。可选值:<br> FULLREDUCE(满减满送)<br> ORDERCASHBACK(订单返现)<br> GROUPBUYING(商品团购)<br> GROUPON(多人拼团)<br> SECKILL(秒杀)<br> AUCTION(降价拍)
|
/// </summary>
|
public string promotion_type { get; set; }
|
/// <summary>
|
///优惠使用条件说明
|
/// </summary>
|
public string promotion_condition { get; set; }
|
/// <summary>
|
///使用时间
|
/// </summary>
|
public string used_at { get; set; }
|
/// <summary>
|
///优惠的金额,单位:元,精确到小数点后两位
|
/// </summary>
|
public double discount_fee { get; set; }
|
}
|
}
|