忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,30 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// LabelRule Data Structure.
/// </summary>
[Serializable]
public class LabelRule : AopObject
{
/// <summary>
/// 标签id
/// </summary>
[JsonProperty("label_id")]
public string LabelId { get; set; }
/// <summary>
/// 标签值,当有多个取值时用英文","分隔,不允许传入下划线"_"、竖线"|"或者空格" "和方括号"["、"]"
/// </summary>
[JsonProperty("label_value")]
public string LabelValue { get; set; }
/// <summary>
/// 目前支持EQ等于、BETWEEN范围、IN包含三种操作符每个标签支持的运算符可以通过查询接口获得。该字段允许为空默认运算符为IN
/// </summary>
[JsonProperty("operator")]
public string Operator { get; set; }
}
}