@@ -129,72 +129,73 @@ public String toString() {
129129 }
130130 }
131131
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+ }
143143
144- public void setGroupId (String groupId ) {
145- this .groupId = groupId ;
146- }
144+ public void setGroupId (String groupId ) {
145+ this .groupId = groupId ;
146+ }
147147
148- public String getSex () {
149- return sex ;
150- }
148+ public String getSex () {
149+ return sex ;
150+ }
151151
152- public void setSex (String sex ) {
153- this .sex = sex ;
154- }
152+ public void setSex (String sex ) {
153+ this .sex = sex ;
154+ }
155155
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+ }
159163
160- public void setCountry ( String country ) {
161- this . country = country ;
162- }
164+ public String getProvince ( ) {
165+ return province ;
166+ }
163167
164- public String getProvince ( ) {
165- return province ;
166- }
168+ public void setProvince ( String province ) {
169+ this . province = province ;
170+ }
167171
168- public void setProvince ( String province ) {
169- this . province = province ;
170- }
172+ public String getCity ( ) {
173+ return city ;
174+ }
171175
172- public String getCity ( ) {
173- return city ;
174- }
176+ public void setCity ( String city ) {
177+ this . city = city ;
178+ }
175179
176- public void setCity ( String city ) {
177- this . city = city ;
178- }
180+ public String getClientPlatformType ( ) {
181+ return clientPlatformType ;
182+ }
179183
180- public String getClientPlatformType ( ) {
181- return clientPlatformType ;
182- }
184+ public void setClientPlatformType ( String clientPlatformType ) {
185+ this . clientPlatformType = clientPlatformType ;
186+ }
183187
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+ }
187200
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- }
200201}
0 commit comments