忽略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,68 +0,0 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// LifeLabel Data Structure.
/// </summary>
[Serializable]
public class LifeLabel : AopObject
{
/// <summary>
/// 该标签支持的业务列表menu表示个性化菜单extension表示个性化扩展区message表示消息触达
/// </summary>
[JsonProperty("biz")]
public string Biz { get; set; }
/// <summary>
/// 标签类目
/// </summary>
[JsonProperty("category")]
public string Category { get; set; }
/// <summary>
/// 标签值数据类型
/// </summary>
[JsonProperty("data_type")]
public string DataType { get; set; }
/// <summary>
/// 标签英文代码
/// </summary>
[JsonProperty("label_code")]
public string LabelCode { get; set; }
/// <summary>
/// 标签id唯一标识一个标签
/// </summary>
[JsonProperty("label_id")]
public string LabelId { get; set; }
/// <summary>
/// 标签名
/// </summary>
[JsonProperty("label_name")]
public string LabelName { get; set; }
/// <summary>
/// 该标签支持的运算符
/// </summary>
[JsonProperty("operator")]
public string Operator { get; set; }
/// <summary>
/// 每个取值的业务含义
/// </summary>
[JsonProperty("options")]
public List<Option> Options { get; set; }
/// <summary>
/// 标签类型目前分为common通用标签、custom生活号自定义标签、cloud云实验室标签
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
}
}