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); 
 | 
    } 
 | 
  
 | 
} 
 |