Files
juipnet/Infrastructure/ServiceClient/MsgCenterClient/WechatMpTplMsg/JieDanMsg.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

33 lines
888 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>
/// 接单通知
/// 模板编号OPENTM201820050
/// 公众号模板库模板标题:工单进度通知
/// </summary>
public class JieDanMsg: MsgBase
{
public JieDanMsg(int ownerId, string appId, string openId)
: base("OPENTM201820050", ownerId, appId, openId)
{
}
/// <summary>
/// 工单号
/// </summary>
[DataBody(1)]
public DataItem GongDanHao { get; set; }
/// <summary>
/// 工单进度
/// </summary>
[DataBody(2)]
public DataItem GongDanJinDu { get; set; }
/// <summary>
/// 工单处理人
/// </summary>
[DataBody(3)]
public DataItem GongDanChuLiRen { get; set; }
}
}