修改msg 信息统一处理
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user