This commit is contained in:
韩鹏辉
2024-03-26 16:25:16 +08:00
parent b77eacdccb
commit 3bb8dfed1e
3 changed files with 23 additions and 7 deletions

View File

@@ -25,6 +25,8 @@ public class TbMemberIn implements Serializable {
private Date updateTime;
private Integer shopId;
private static final long serialVersionUID = 1L;
public Integer getId() {
@@ -106,4 +108,12 @@ public class TbMemberIn implements Serializable {
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
public Integer getShopId() {
return shopId;
}
public void setShopId(Integer shopId) {
this.shopId = shopId;
}
}