C#公共类
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
620 B

3 years ago
using System;
using System.Collections.Generic;
using System.Text;
namespace Common.Helper.WeChat.Models.SubscribeMessage
{
public class AuditResult
{
/// <summary>
/// 申请类型
/// </summary>
public string phrase1 { get; set; }
/// <summary>
/// 审核结果
/// </summary>
public string phrase2 { get; set; }
/// <summary>
/// 审核时间
/// </summary>
public string date3 { get; set; }
/// <summary>
/// 备注
/// </summary>
public string thing4 { get; set; }
}
}