zhaojs
2023-09-15 fc13938ff90213060532d99a600dea4a84456885
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace YouZanSDKStandard.Api.Domain
{
    /// <summary>
    /// 交易优惠
    /// </summary>
    [Serializable]
    public class TradeOrderPromotionOpenModel
    {
        /// <summary>
        /// 优惠的名称
        /// </summary>
        public string promotion_name { get; set; }
        /// <summary>
        /// 优惠的类型。可选值:<br>MEMBER_CARD_DISCOUNT(会员卡折扣) <br>SCAN_DISCOUNT(扫码折扣) <br>SCAN_DECREASE(扫码减额优惠) <br>TIMELIMITED_DISCOUNT(限时折扣)
        /// </summary>
        public string promotion_type { get; set; }
        /// <summary>
        /// 应用优惠的时间
        /// </summary>
        public string apply_at { get; set; }
        /// <summary>
        /// 优惠的金额,单位:元,精确到小数点后两位
        /// </summary>
        public double discount_fee { get; set; } 
 
    }
}