33 lines
909 B
C#
33 lines
909 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|