| 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
50
51
 | | package com.matrix.system.shopXcx.shopEnum; |  |   |  | /** |  |  * 微信模板消息种类 |  |  */ |  | public enum TemplateMsgType { |  |     /** |  |      * 预约成功 |  |      */ |  |     APPOINTMENT_SUCCESS(10000), |  |     /** |  |      * 预约取消 |  |      */ |  |     APPOINTMENT_CANCEL(10001), |  |   |  |     /** |  |      * 下单成功通知 |  |      */ |  |     ORDER_CREATE_SUCCESS(10002), |  |   |  |     /** |  |      * 订单发货通知 |  |      */ |  |     ORDER_DELIVERY(10003), |  |     /** |  |      *退款拒绝 |  |      */ |  |     REFUND_REFUSAL(10004), |  |     /** |  |      * 退款成功,退货邮寄提醒 |  |      */ |  |     REFUND_SEND_POST(10005), |  |   |  |     ; |  |   |  |   |  |     TemplateMsgType(int code) { |  |         this.code = code; |  |     } |  |   |  |     private Integer code; |  |   |  |     public Integer getCode() { |  |         return code; |  |     } |  |   |  |     public void setCode(Integer code) { |  |         this.code = code; |  |     } |  |   |  | } | 
 |