memberIn 增加shopId merchantId

This commit is contained in:
GYJ
2024-06-20 15:19:03 +08:00
parent f4d177609c
commit c1790a3198
3 changed files with 35 additions and 10 deletions

View File

@@ -21,6 +21,8 @@ public class TbMemberIn implements Serializable {
private String tradeNo;
private String shopId;
private Date createTime;
private Date updateTime;
@@ -91,6 +93,14 @@ public class TbMemberIn implements Serializable {
this.tradeNo = tradeNo == null ? null : tradeNo.trim();
}
public String getShopId() {
return shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public Date getCreateTime() {
return createTime;
}
@@ -106,4 +116,4 @@ public class TbMemberIn implements Serializable {
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
}
}