yujian
2019-09-03 d1dccd08a249b830a95eeeb04af25f87d5c056be
fanli/src/main/java/com/yeshi/fanli/vo/msg/TokenVO.java
@@ -7,7 +7,7 @@
public class TokenVO {
   
   @Expose // id
   private Long id;
   private String token;
   
   @Expose // 昵称
   private String nickName;
@@ -15,8 +15,8 @@
   @Expose // 头像
   private String portrait;
   
   @Expose // 类型
   private String type;
   @Expose // 类型  1标题搜索  2链接搜索
   private Integer type;
   
   @Expose // 数量、面额
   private Integer amount;
@@ -44,11 +44,12 @@
      this.portrait = portrait;
   }
   public String getType() {
   public Integer getType() {
      return type;
   }
   public void setType(String type) {
   public void setType(Integer type) {
      this.type = type;
   }
@@ -68,12 +69,12 @@
      this.tips = tips;
   }
   public Long getId() {
      return id;
   public String getToken() {
      return token;
   }
   public void setId(Long id) {
      this.id = id;
   public void setToken(String token) {
      this.token = token;
   }
   public Boolean getState() {