using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InsMktObjectDTO Data Structure. /// [Serializable] public class InsMktObjectDTO : AopObject { /// /// 活动标的id /// [JsonProperty("obj_id")] public string ObjId { get; set; } /// /// 标的类型 /// [JsonProperty("type")] public long Type { get; set; } } }