using Senparc.Weixin.Entities;
namespace Senparc.Weixin.MP.AdvancedAPIs.Wxa.MerchantJson
{
public class MerchantAuditInfo
{
///
/// 审核单id
///
public long audit_id { get; set; }
///
/// 审核状态,0:未提交审核,1:审核成功,2:审核中,3:审核失败,4:管理员拒绝
///
public int status { get; set; }
///
/// 审核状态为3或者4时,reason列出审核失败的原因
///
public string reason { get; set; }
}
///
/// 门店小程序审核结果
///
public class GetMerchantAuditInfoJson : WxJsonResult
{
///
/// 审核结果数据
///
public MerchantAuditInfo data { get; set; }
}
}