From 2ec42a5aacea35d2918f0e17f07685cf5b4d25c8 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 12 五月 2020 20:20:41 +0800 Subject: [PATCH] 包名引用路径更改 --- fanli/src/main/java/com/yeshi/fanli/vo/msg/TokenVO.java | 30 +++++++++++++++++++++--------- 1 files changed, 21 insertions(+), 9 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/vo/msg/TokenVO.java b/fanli/src/main/java/com/yeshi/fanli/vo/msg/TokenVO.java index 558cba3..4c1dcd8 100644 --- a/fanli/src/main/java/com/yeshi/fanli/vo/msg/TokenVO.java +++ b/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; + } } -- Gitblit v1.8.0