@@ -129,72 +129,73 @@ public String toString() {
129
129
}
130
130
}
131
131
132
- public static class WxMenuRule {
133
- private String groupId ;
134
- private String sex ;
135
- private String country ;
136
- private String province ;
137
- private String city ;
138
- private String clientPlatformType ;
139
-
140
- public String getGroupId () {
141
- return groupId ;
142
- }
132
+ public static class WxMenuRule {
133
+ private String groupId ;
134
+ private String sex ;
135
+ private String country ;
136
+ private String province ;
137
+ private String city ;
138
+ private String clientPlatformType ;
139
+
140
+ public String getGroupId () {
141
+ return groupId ;
142
+ }
143
143
144
- public void setGroupId (String groupId ) {
145
- this .groupId = groupId ;
146
- }
144
+ public void setGroupId (String groupId ) {
145
+ this .groupId = groupId ;
146
+ }
147
147
148
- public String getSex () {
149
- return sex ;
150
- }
148
+ public String getSex () {
149
+ return sex ;
150
+ }
151
151
152
- public void setSex (String sex ) {
153
- this .sex = sex ;
154
- }
152
+ public void setSex (String sex ) {
153
+ this .sex = sex ;
154
+ }
155
155
156
- public String getCountry () {
157
- return country ;
158
- }
156
+ public String getCountry () {
157
+ return country ;
158
+ }
159
+
160
+ public void setCountry (String country ) {
161
+ this .country = country ;
162
+ }
159
163
160
- public void setCountry ( String country ) {
161
- this . country = country ;
162
- }
164
+ public String getProvince ( ) {
165
+ return province ;
166
+ }
163
167
164
- public String getProvince ( ) {
165
- return province ;
166
- }
168
+ public void setProvince ( String province ) {
169
+ this . province = province ;
170
+ }
167
171
168
- public void setProvince ( String province ) {
169
- this . province = province ;
170
- }
172
+ public String getCity ( ) {
173
+ return city ;
174
+ }
171
175
172
- public String getCity ( ) {
173
- return city ;
174
- }
176
+ public void setCity ( String city ) {
177
+ this . city = city ;
178
+ }
175
179
176
- public void setCity ( String city ) {
177
- this . city = city ;
178
- }
180
+ public String getClientPlatformType ( ) {
181
+ return clientPlatformType ;
182
+ }
179
183
180
- public String getClientPlatformType ( ) {
181
- return clientPlatformType ;
182
- }
184
+ public void setClientPlatformType ( String clientPlatformType ) {
185
+ this . clientPlatformType = clientPlatformType ;
186
+ }
183
187
184
- public void setClientPlatformType (String clientPlatformType ) {
185
- this .clientPlatformType = clientPlatformType ;
186
- }
188
+ @ Override
189
+ public String toString () {
190
+ return "matchrule:{" +
191
+ "group_id='" + groupId + '\'' +
192
+ ", sex='" + sex + '\'' +
193
+ ", country" + country + '\'' +
194
+ ", province" + province + '\'' +
195
+ ", city" + city + '\'' +
196
+ ", client_platform_type" + clientPlatformType + '\'' +
197
+ "}" ;
198
+ }
199
+ }
187
200
188
- @ Override
189
- public String toString () {
190
- return "matchrule:{" +
191
- "group_id='" + groupId + '\'' +
192
- ", sex='" + sex + '\'' +
193
- ", country" + country + '\'' +
194
- ", province" + province + '\'' +
195
- ", city" + city + '\'' +
196
- ", client_platform_type" + clientPlatformType + '\'' +
197
- "}" ;
198
- }
199
- }
200
201
}
0 commit comments