mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-09-21 02:58:09 +08:00
fix warnings
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
package me.chanjar.weixin.mp.bean.tag;
|
||||
|
||||
import com.google.gson.JsonParser;
|
||||
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
import com.google.gson.JsonParser;
|
||||
|
||||
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;
|
||||
|
||||
/**
|
||||
* 用户标签对象
|
||||
* @author binarywang(https://github.com/binarywang)
|
||||
@@ -27,7 +29,7 @@ public class WxUserTag {
|
||||
private Integer count;
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
@@ -35,7 +37,7 @@ public class WxUserTag {
|
||||
}
|
||||
|
||||
public Integer getCount() {
|
||||
return count;
|
||||
return this.count;
|
||||
}
|
||||
|
||||
public void setCount(Integer count) {
|
||||
@@ -43,7 +45,7 @@ public class WxUserTag {
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
|
Reference in New Issue
Block a user