using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// CustomerEntity Data Structure. /// [Serializable] public class CustomerEntity : AopObject { /// /// 实体英文名 /// [JsonProperty("code")] public string Code { get; set; } /// /// 实体描述 /// [JsonProperty("desc")] public string Desc { get; set; } /// /// 实体id /// [JsonProperty("id")] public string Id { get; set; } /// /// 实体中文名称 /// [JsonProperty("name")] public string Name { get; set; } /// /// tag列表 /// [JsonProperty("tags")] public List Tags { get; set; } } }