using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// ModelMeta Data Structure.
///
[Serializable]
public class ModelMeta : AopObject
{
///
/// 模型描述
///
[JsonProperty("model_desc")]
public string ModelDesc { get; set; }
///
/// 模型名称
///
[JsonProperty("model_name")]
public string ModelName { get; set; }
///
/// 模型唯一查询标识符
///
[JsonProperty("model_uk")]
public string ModelUk { get; set; }
///
/// 查询参数
///
[JsonProperty("query_key")]
public List QueryKey { get; set; }
}
}