Merge remote-tracking branch 'origin/hph' into dev

This commit is contained in:
韩鹏辉
2024-07-11 13:51:56 +08:00
5 changed files with 39 additions and 3 deletions

View File

@@ -45,6 +45,8 @@ public class TbmerchantAccount implements Serializable {
private String headImg;
private String pwd;
private static final long serialVersionUID = 1L;
public Integer getId() {
@@ -214,4 +216,12 @@ public class TbmerchantAccount implements Serializable {
public void setHeadImg(String headImg) {
this.headImg = headImg == null ? null : headImg.trim();
}
public String getPwd() {
return pwd;
}
public void setPwd(String pwd) {
this.pwd = pwd;
}
}