mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-10-29 17:48:50 +08:00
change tab space
change tab space 2 times
This commit is contained in:
@ -129,72 +129,73 @@ public class WxMenu implements Serializable {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class WxMenuRule {
|
public static class WxMenuRule {
|
||||||
private String groupId;
|
private String groupId;
|
||||||
private String sex;
|
private String sex;
|
||||||
private String country;
|
private String country;
|
||||||
private String province;
|
private String province;
|
||||||
private String city;
|
private String city;
|
||||||
private String clientPlatformType;
|
private String clientPlatformType;
|
||||||
|
|
||||||
public String getGroupId() {
|
public String getGroupId() {
|
||||||
return groupId;
|
return groupId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setGroupId(String groupId) {
|
public void setGroupId(String groupId) {
|
||||||
this.groupId = groupId;
|
this.groupId = groupId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getSex() {
|
public String getSex() {
|
||||||
return sex;
|
return sex;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSex(String sex) {
|
public void setSex(String sex) {
|
||||||
this.sex = sex;
|
this.sex = sex;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getCountry() {
|
public String getCountry() {
|
||||||
return country;
|
return country;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCountry(String country) {
|
public void setCountry(String country) {
|
||||||
this.country = country;
|
this.country = country;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getProvince() {
|
public String getProvince() {
|
||||||
return province;
|
return province;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setProvince(String province) {
|
public void setProvince(String province) {
|
||||||
this.province = province;
|
this.province = province;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getCity() {
|
public String getCity() {
|
||||||
return city;
|
return city;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCity(String city) {
|
public void setCity(String city) {
|
||||||
this.city = city;
|
this.city = city;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getClientPlatformType() {
|
public String getClientPlatformType() {
|
||||||
return clientPlatformType;
|
return clientPlatformType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setClientPlatformType(String clientPlatformType) {
|
public void setClientPlatformType(String clientPlatformType) {
|
||||||
this.clientPlatformType = clientPlatformType;
|
this.clientPlatformType = clientPlatformType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "matchrule:{" +
|
||||||
|
"group_id='" + groupId + '\'' +
|
||||||
|
", sex='" + sex + '\'' +
|
||||||
|
", country" + country + '\'' +
|
||||||
|
", province" + province + '\'' +
|
||||||
|
", city" + city + '\'' +
|
||||||
|
", client_platform_type" + clientPlatformType + '\'' +
|
||||||
|
"}";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "matchrule:{" +
|
|
||||||
"group_id='" + groupId + '\'' +
|
|
||||||
", sex='" + sex + '\'' +
|
|
||||||
", country" + country + '\'' +
|
|
||||||
", province" + province + '\'' +
|
|
||||||
", city" + city + '\'' +
|
|
||||||
", client_platform_type" + clientPlatformType + '\'' +
|
|
||||||
"}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user