忽略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>
/// DataDim Data Structure.
/// </summary>
[Serializable]
public class DataDim : AopObject
{
/// <summary>
/// 维度名称,代表维度层级含义 不同维度间用“|”分割
/// </summary>
[JsonProperty("dim_name")]
public string DimName { get; set; }
/// <summary>
/// 维度类型,并级或者层级 parallel 并列维度 hierarchical 层级维度
/// </summary>
[JsonProperty("dim_type")]
public string DimType { get; set; }
/// <summary>
/// 维度值,代表维度层级的值
/// </summary>
[JsonProperty("dim_value")]
public string DimValue { get; set; }
}
}