File tree Expand file tree Collapse file tree 2 files changed +25
-10
lines changed
weixin-java-mp/src/main/java/me/chanjar/weixin/mp Expand file tree Collapse file tree 2 files changed +25
-10
lines changed Original file line number Diff line number Diff line change @@ -227,16 +227,6 @@ public class BaseInfo implements Serializable {
227
227
*/
228
228
@ SerializedName ("promotion_app_brand_pass" )
229
229
private String promotionAppBrandPass ;
230
- /**
231
- * 小程序的user_name,
232
- */
233
- @ SerializedName ("activate_app_brand_user_name" )
234
- private String activateAppBrandUserName ;
235
- /**
236
- * 激活小程序页面地址
237
- */
238
- @ SerializedName ("activate_app_brand_pass" )
239
- private String activateAppBrandPass ;
240
230
241
231
@ Override
242
232
public String toString () {
Original file line number Diff line number Diff line change
1
+ package me .chanjar .weixin .mp .enums ;
2
+
3
+ /**
4
+ * @description: 微信卡券类型
5
+ * @author: chenyixin
6
+ * @create: 2019-09-07 23:33
7
+ **/
8
+ public enum WxCardType {
9
+ MEMBER_CARD ("MEMBER_CARD" ),
10
+ GROUPON ("GROUPON" ),
11
+ CASH ("CASH" ),
12
+ DISCOUNT ("DISCOUNT" ),
13
+ GIFT ("GIFT" ),
14
+ GENERAL_COUPON ("GENERAL_COUPON" );
15
+
16
+ private String code ;
17
+
18
+ WxCardType (String code ) {
19
+ this .code = code ;
20
+ }
21
+
22
+ public String getCode () {
23
+ return code ;
24
+ }
25
+ }
You can’t perform that action at this time.
0 commit comments