添加会员支付
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user