添加耗材

This commit is contained in:
韩鹏辉
2024-07-05 10:05:44 +08:00
parent 6908d8eaf3
commit b236cac065
5 changed files with 52 additions and 38 deletions

View File

@@ -4,6 +4,8 @@ import java.io.Serializable;
import java.util.Date;
public class TbUserShopMsg implements Serializable {
private Integer id;
private Integer shopId;
private String openId;
@@ -18,6 +20,14 @@ public class TbUserShopMsg implements Serializable {
private static final long serialVersionUID = 1L;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getShopId() {
return shopId;
}
@@ -65,4 +75,4 @@ public class TbUserShopMsg implements Serializable {
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
}
}