新增会员填充加入会员时间

userInfo增加 储值和优惠卷数 字段
This commit is contained in:
2024-09-25 17:59:01 +08:00
parent e532174124
commit e17e2e5d60
6 changed files with 46 additions and 1 deletions

View File

@@ -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;
}
}