jyy
2021-03-19 c16b9ffceac828840ef7ebc4827612d17906704a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.matrix.system.wechart.templateMsg;
 
import com.alibaba.fastjson.JSONObject;
 
/**
 * 统一消息参数体
 */
public class UniformMsgParam extends JSONObject{
 
    /**
     * 公众号预约提醒
     */
    public static final Integer GZH_YYTX = 10000;
    /**
     * 购买成功通知
     */
    public static final Integer GZH_GMCG = 10001;
    /**
     * 预约变更通知
     */
    public static final Integer GZH_YYBG = 10002;
    /**
     * 预约到时提醒
     */
    public static final Integer GZH_YYDS = 10003;
    /**
     * 预约成功提醒
     */
    public static final Integer GZH_YYCG = 10004;
    /**
     * 充值成功通知
     */
    public static final Integer GZH_CZCG = 10005;
    /**
     * 服务完成通知
     */
    public static final Integer GZH_FWWC = 10006;
    /**
     * 订单取消通知
     */
    public static final  Integer GZH_DDQX = 10007;
 
 
    public  UniformMsgParam(Long companyId, Integer templateCode){
        super.put("companyId",companyId);
        super.put("templateCode",templateCode);
    }
 
}