heyuntao
2023-05-05 cc09b6fe6ffac34a4eeeb26d313b187713cae0de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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; }
    }
}