初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
namespace MsgCenterClient.WechatMpTplMsg
{
/// <summary>
/// 人脸钥匙认证成功通知
/// 模板编号OPENTM403179452
/// 公众号模板库模板标题:认证成功通知
/// </summary>
public class RenLianRenZhengChengGongMsg: MsgBase
{
public RenLianRenZhengChengGongMsg( int ownerId, string appId, string openId)
: base("OPENTM403179452", ownerId, appId, openId)
{
}
/// <summary>
/// 认证类型
/// </summary>
[DataBody(1)]
public DataItem RenZhengLeiXing { get; set; }
/// <summary>
/// 审核结果
/// </summary>
[DataBody(2)]
public DataItem ShenHeJieGuo { get; set; }
/// <summary>
/// 审核时间
/// </summary>
[DataBody(3)]
public DataItem ShenHeShiJian { get; set; }
}
}