using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AdUserQualification Data Structure. /// [Serializable] public class AdUserQualification : AopObject { /// /// 审核人员id /// [XmlElement("approver")] public string Approver { get; set; } /// /// 审核原因 /// [XmlElement("audit_reason")] public string AuditReason { get; set; } /// /// 审核状态:0 审核通过、1 库存校验中、2运营审核中、3 审核拒绝 /// [XmlElement("audit_status")] public long AuditStatus { get; set; } /// /// 审核日期 /// [XmlElement("audit_time")] public long AuditTime { get; set; } /// /// 资质文件列表 /// [XmlArray("file_url")] [XmlArrayItem("string")] public List FileUrl { get; set; } /// /// 资质id /// [XmlElement("id")] public long Id { get; set; } /// /// 资质名称 /// [XmlElement("qualification_name")] public string QualificationName { get; set; } } }