using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// VerifiedInfo Data Structure.
///
[Serializable]
public class VerifiedInfo : AopObject
{
///
/// 用户申请订单号回传。 Unique Application No.
///
[XmlElement("application_no")]
public string ApplicationNo { get; set; }
///
/// 扩展信息,用于保存其它补充信息。
///
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
///
/// 审核记录。 Note.
///
[XmlElement("note")]
public string Note { get; set; }
///
/// 审核备注。 Remark.
///
[XmlElement("remark")]
public string Remark { get; set; }
///
/// 审核状态:通过/拒绝。 Status of application:Verified/Rejected.
///
[XmlElement("status")]
public string Status { get; set; }
///
/// 审核负责单位。 Name of user who do verify.
///
[XmlElement("verified_by")]
public string VerifiedBy { get; set; }
///
/// 审核时间。 DateTime of verified or rejected.
///
[XmlElement("verify_date_time")]
public string VerifyDateTime { get; set; }
}
}