using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// MerchantApplyResultRecord Data Structure.
///
[Serializable]
public class MerchantApplyResultRecord : AopObject
{
///
/// 签约产品名称
///
[XmlElement("prod_name")]
public string ProdName { get; set; }
///
/// 如审核失败,表示该字段引发的审核失败
///
[XmlElement("prop_input_key")]
public string PropInputKey { get; set; }
///
/// 认证、产品签约审核失败原因
///
[XmlElement("result_msg")]
public string ResultMsg { get; set; }
///
/// 认证审核、产品签约审核状态
///
[XmlElement("result_status")]
public string ResultStatus { get; set; }
///
/// 详情类型,CETIFY为认证,PROD为产品签约,COMMENT为认证审核批注
///
[XmlElement("result_type")]
public string ResultType { get; set; }
}
}