添加会员支付

This commit is contained in:
韩鹏辉
2024-04-18 13:59:16 +08:00
parent 83a08265c3
commit 4fc29e3ad8
8 changed files with 192 additions and 15 deletions

View File

@@ -42,6 +42,13 @@ public class TbShopUser implements Serializable {
private String code;
private String dynamicCode;
private String isPwd;
private String pwd;
private Byte isAttention;
private Integer attentionAt;
@@ -214,6 +221,30 @@ public class TbShopUser implements Serializable {
this.code = code == null ? null : code.trim();
}
public String getDynamicCode() {
return dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getIsPwd() {
return isPwd;
}
public void setIsPwd(String isPwd) {
this.isPwd = isPwd;
}
public String getPwd() {
return pwd;
}
public void setPwd(String pwd) {
this.pwd = pwd;
}
public Byte getIsAttention() {
return isAttention;
}