NewGaoKaoApi/PaymentSDK/AliPay/Domain/KbdishCommRuleShowInfo.cs

31 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// KbdishCommRuleShowInfo Data Structure.
/// </summary>
[Serializable]
public class KbdishCommRuleShowInfo : AopObject
{
/// <summary>
/// 规则扩展
/// </summary>
[XmlElement("tag_ext_info")]
public string TagExtInfo { get; set; }
/// <summary>
/// 键值如下: 组维度的规则: minLimit组最小选择份数 maxLimit组最大选择份数 required是否必选 selectNum可选选项数量默认不限制 fold是否折叠到进阶选择里 change: 是否可以置换 明细维度的规则: minLimit明细最小选择份数 maxLimit明细最大选择份数 addPrice加价 addPriceStep加价步长默认为1 defaultNum默认份数 default是否默认 required是否必选 规格组维度的规则: default: 是否默认 规则标签明细的规则: default: 是否默认 sort: 排序值 hidden:是否隐藏
/// </summary>
[XmlElement("tag_name")]
public string TagName { get; set; }
/// <summary>
/// 规则值 数字 或者是否 , 数字 或者true/false
/// </summary>
[XmlElement("tag_value")]
public string TagValue { get; set; }
}
}