using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KoubeiQualityTestCloudacptItemQueryModel Data Structure. /// [Serializable] public class KoubeiQualityTestCloudacptItemQueryModel : AopObject { /// /// 活动id /// [JsonProperty("activity_id")] public string ActivityId { get; set; } /// /// 批次id /// [JsonProperty("batch_id")] public string BatchId { get; set; } /// /// partener id /// [JsonProperty("pid")] public string Pid { get; set; } /// /// user id /// [JsonProperty("uid")] public string Uid { get; set; } } }