NewGaoKaoApi/PaymentSDK/AliPay/Domain/ComplexLabelRule.cs

31 lines
1014 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>
/// ComplexLabelRule Data Structure.
/// </summary>
[Serializable]
public class ComplexLabelRule : AopObject
{
/// <summary>
/// 标签id
/// </summary>
[XmlElement("label_id")]
public string LabelId { get; set; }
/// <summary>
/// 标签取值,当有多个取值时用英文","分隔比如使用in操作符时不允许传入下划线"_"、竖线"|"或者空格" "
/// </summary>
[XmlElement("label_value")]
public string LabelValue { get; set; }
/// <summary>
/// 目前支持EQ等于、NEQ不等于、LT小于GT大于、LTEQ小于等于、GTEQ大于等于、LIKE匹配、BETWEEN范围、IN包含、NOTIN不包含操作
/// </summary>
[XmlElement("operator")]
public string Operator { get; set; }
}
}