新增会员填充加入会员时间
userInfo增加 储值和优惠卷数 字段
This commit is contained in:
@@ -101,7 +101,11 @@ public class TbUserInfo implements Serializable {
|
||||
|
||||
private String pwd;
|
||||
|
||||
private String custPhone="400-6666-389";
|
||||
private String custPhone = "400-6666-389";
|
||||
//优惠卷数量
|
||||
private Integer couponAll = 0;
|
||||
//储值数量
|
||||
private BigDecimal balanceAll = BigDecimal.ZERO;
|
||||
|
||||
|
||||
public String getAvatar() {
|
||||
@@ -505,4 +509,20 @@ public class TbUserInfo implements Serializable {
|
||||
public void setPwd(String pwd) {
|
||||
this.pwd = pwd;
|
||||
}
|
||||
|
||||
public Integer getCouponAll() {
|
||||
return couponAll;
|
||||
}
|
||||
|
||||
public void setCouponAll(Integer couponAll) {
|
||||
this.couponAll = couponAll;
|
||||
}
|
||||
|
||||
public BigDecimal getBalanceAll() {
|
||||
return balanceAll;
|
||||
}
|
||||
|
||||
public void setBalanceAll(BigDecimal balanceAll) {
|
||||
this.balanceAll = balanceAll;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user