接口文件
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user