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