Files
juipnet/Infrastructure/ServiceClient/MsgCenterClient/WechatMiniAppTplMsg/FangKeShenHeMsg.cs
“wanyongkang” 40a40b6d36 忽略
2020-12-28 14:55:48 +08:00

50 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace MsgCenterClient.WechatMpTplMsg
{
/// <summary>
/// 访客审核通知
/// 模板编号ku4vArgTpMOvwBeKQpjj6iE1nhVJyHL9xeQUjkUv5sY
/// 公众号模板库模板标题:认证成功通知
/// </summary>
public class FangKeShenHeMsg : MiniAppMsgBase
{
public FangKeShenHeMsg(int ownerId, string appId, string openId)
: base("ku4vArgTpMOvwBeKQpjj6iE1nhVJyHL9xeQUjkUv5sY", ownerId, appId, openId)
{
}
/// <summary>
/// 审核结果
/// </summary>
[DataBody(1)]
public DataItem ShenHeJieGuo { get; set; }
/// <summary>
/// 受访单位
/// </summary>
[DataBody(2)]
public DataItem ShouFangDanWei { get; set; }
/// <summary>
/// 事由
/// </summary>
[DataBody(3)]
public DataItem ShiYou { get; set; }
/// <summary>
/// 访客姓名
/// </summary>
[DataBody(4)]
public DataItem FangKeXingMing { get; set; }
/// <summary>
/// 手机号
/// </summary>
[DataBody(5)]
public DataItem ShouJi { get; set; }
/// <summary>
/// 备注
/// </summary>
[DataBody(6)]
public DataItem BeiZhu { get; set; }
}
}