yujian
2020-05-23 28cf328a098334b51a3e9d2d56f983fb8c862211
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,11 +15,14 @@
   @Expose // 头像
   private String portrait;
   
   @Expose // 类型
   private String type;
   @Expose // 类型  1标题搜索  2链接搜索
   private Integer type;
   
   @Expose // 数量、面额
   private Integer amount;
   @Expose // 数量、面额--- V2
   private String money;
   
   @Expose // 提示语
   private List<String> tips;
@@ -44,11 +47,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 +72,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() {
@@ -83,4 +87,12 @@
   public void setState(Boolean state) {
      this.state = state;
   }
   public String getMoney() {
      return money;
   }
   public void setMoney(String money) {
      this.money = money;
   }
}