using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using TeaV2.Entity; namespace JwKdsV.Entity { /// /// 开放平台返回单一对象的应答 /// /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class EntityResponse : BaseResponse { /** * 返回数据 */ [JsonProperty(PropertyName = "data")] public T Data { get; set; } } }