using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KoubeiQualityTestCloudacptCheckresultSubmitModel Data Structure. /// [Serializable] public class KoubeiQualityTestCloudacptCheckresultSubmitModel : AopObject { /// /// 活动id /// [JsonProperty("activity_id")] public string ActivityId { get; set; } /// /// 付款码 /// [JsonProperty("auth_code")] public string AuthCode { get; set; } /// /// 批次ID /// [JsonProperty("batch_id")] public string BatchId { get; set; } /// /// 结束时间 /// [JsonProperty("end_time")] public string EndTime { get; set; } /// /// partenter id /// [JsonProperty("pid")] public string Pid { get; set; } /// /// 开始时间 /// [JsonProperty("start_time")] public string StartTime { get; set; } /// /// user id /// [JsonProperty("uid")] public string Uid { get; set; } } }