Files
juipnet/Infrastructure/ServiceClient/MsgCenterClient/WechatMpTplMsg/YaoYueDaoFangMsg.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

33 lines
909 B
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>
/// 邀请访客到访通知
/// 模板编号rKssp0BPmK-XmGXCbrh3f6e9NVpb75Zqzui8Hcx26dE
/// 公众号模板库模板标题:来访通知
/// </summary>
public class YaoYueDaoFangMsg: MsgBase
{
public YaoYueDaoFangMsg(int ownerId, string appId, string openId)
: base("OPENTM408101810", ownerId, appId, openId)
{
}
/// <summary>
/// 访客名称
/// </summary>
[DataBody(1)]
public DataItem FangKeMingCheng { get; set; }
/// <summary>
/// 访客电话
/// </summary>
[DataBody(2)]
public DataItem FangKeDianHua { get; set; }
/// <summary>
/// 来访时间
/// </summary>
[DataBody(3)]
public DataItem LaiFangShiJian { get; set; }
}
}