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

39 lines
1.4 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 System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ResetZeroDstCampPrizeModel Data Structure.
/// </summary>
[Serializable]
public class ResetZeroDstCampPrizeModel : AopObject
{
/// <summary>
/// 折扣预算ID
/// </summary>
[JsonProperty("budget_id")]
public string BudgetId { get; set; }
/// <summary>
/// 奖品id
/// </summary>
[JsonProperty("id")]
public string Id { get; set; }
/// <summary>
/// 单笔上限金额只能填写数字大于等于0小数点后最多2位整数部分不能超过5位
/// </summary>
[JsonProperty("max_discount_amt")]
public string MaxDiscountAmt { get; set; }
/// <summary>
/// 对应的值分别为100,1000,10000,100000 小数点取整交易金额必须大于1元最大优惠幅度0.99元EG交易金额1.36元取整后优惠后金额为1元
/// 个位数取整交易金额必须大于10元最大优惠幅度9.99元EG交易金额13.56元取整后优惠后金额为10元
/// 十位数取整交易金额必须大于100元最大优惠幅度99.99元EG交易金额125.56元取整后优惠后金额为100元
/// 百位数取整交易金额必须大于1000元最大优惠幅度999.99元EG交易金额1125.56元取整后优惠后金额为1000元
/// </summary>
[JsonProperty("reset_zero_amt")]
public string ResetZeroAmt { get; set; }
}
}