修改msg 信息统一处理

This commit is contained in:
韩鹏辉
2024-06-14 15:26:48 +08:00
parent f3de388e49
commit 69b7ed77ec
5 changed files with 42 additions and 13 deletions

View File

@@ -19,6 +19,8 @@ public class TbShopUserFlow implements Serializable {
private Date createTime;
private String type;
private static final long serialVersionUID = 1L;
public Integer getId() {
@@ -76,4 +78,12 @@ public class TbShopUserFlow implements Serializable {
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type == null ? null : type.trim();
}
}