Commit a24241bd authored by hezhen's avatar hezhen

123

parent b1fe9757
...@@ -62,6 +62,10 @@ public class SmsTemplateDTO { ...@@ -62,6 +62,10 @@ public class SmsTemplateDTO {
public static final int REFUND_A = 22; public static final int REFUND_A = 22;
//违章押金退还 //违章押金退还
public static final int REFUND_B = 23; public static final int REFUND_B = 23;
//旅游内部通知(客服)
public static final int PAY_H = 24;
//取消旅游订单(客服)
public static final int CANCEL_F = 25;
......
...@@ -58,6 +58,11 @@ public class CCPRestSmsBiz{ ...@@ -58,6 +58,11 @@ public class CCPRestSmsBiz{
//违章押金退还 23 //违章押金退还 23
public static final String TEMPLATE_ID_FINISH_B = "460773"; public static final String TEMPLATE_ID_FINISH_B = "460773";
//旅游内部通知(客服)24
public static final String TEMPLATE_ID_PAY_H = "461421";
//取消旅游订单(客服)25
public static final String TEMPLATE_ID_CANCEL_F = "461424";
...@@ -131,6 +136,12 @@ public class CCPRestSmsBiz{ ...@@ -131,6 +136,12 @@ public class CCPRestSmsBiz{
case 23 : case 23 :
CCPRestSmsUtils.sendTemplateSMS(phoneNumbers,params,TEMPLATE_ID_FINISH_B); CCPRestSmsUtils.sendTemplateSMS(phoneNumbers,params,TEMPLATE_ID_FINISH_B);
break; break;
case 24 :
CCPRestSmsUtils.sendTemplateSMS(phoneNumbers,params,TEMPLATE_ID_PAY_H);
break;
case 25 :
CCPRestSmsUtils.sendTemplateSMS(phoneNumbers,params,TEMPLATE_ID_CANCEL_F);
break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment