Commit 4c430af6 authored by wyh's avatar wyh

修改 字段 类型

parent 43b7752a
......@@ -87,8 +87,8 @@ public class Store extends Entity<String> {
private Integer serialNumber;
//是否删除(0未删除1删除)
private Integer isDeleted;
//是否启用(0不启用1 启用)
private Integer userId;
//系统用户ID
private String userId;
//店铺管理员名称
private String administratorsName;
//市名称
......@@ -171,11 +171,12 @@ public class Store extends Entity<String> {
public Integer getUserId() {
public String getUserId() {
return userId;
}
public void setUserId(Integer userId) {
public void setUserId(String userId) {
this.userId = userId;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment