Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/DiscountDstCampPrizeModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

36 lines
1000 B
C#
Raw Permalink 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 System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// DiscountDstCampPrizeModel Data Structure.
/// </summary>
[Serializable]
public class DiscountDstCampPrizeModel : AopObject
{
/// <summary>
/// 预算id,商户先调预算创建接口得到预算id,传入
/// </summary>
[JsonProperty("budget_id")]
public string BudgetId { get; set; }
/// <summary>
/// 折扣幅度必须为0.1到1之间的小数(保留小数点后2位)
/// </summary>
[JsonProperty("discount_rate")]
public string DiscountRate { get; set; }
/// <summary>
/// 奖品id 修改传值 ,新增可以不传
/// </summary>
[JsonProperty("id")]
public string Id { get; set; }
/// <summary>
/// 单次优惠上限(元),单笔上限金额只能填写数字大于等于0小数点后最多2位整数部分不能超过10位
/// </summary>
[JsonProperty("max_discount_amt")]
public string MaxDiscountAmt { get; set; }
}
}