NewGaoKaoApi/PaymentSDK/AliPay/Domain/InteligentDataCondition.cs

31 lines
955 B
C#
Raw Permalink 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>
/// InteligentDataCondition Data Structure.
/// </summary>
[Serializable]
public class InteligentDataCondition : AopObject
{
/// <summary>
/// 数据类型支持枚举文本STRING数值NUMBER长整型LONG浮点型DOUBLE日期DATE布尔BOOLEAN金额MONEY
/// </summary>
[XmlElement("data_type")]
public string DataType { get; set; }
/// <summary>
/// 数据限制类型支持枚举固定值FIX单选值SELECT区间值RANGE;
/// </summary>
[XmlElement("limit_type")]
public string LimitType { get; set; }
/// <summary>
/// 数据格式值;如:范围值:(1,10),固定值:1
/// </summary>
[XmlElement("value")]
public string Value { get; set; }
}
}