Commit fc2a053d by huangjinxin

fix:添加用户状态字段

1 parent 90b23a3c
...@@ -127,4 +127,9 @@ public class UserInfo { ...@@ -127,4 +127,9 @@ public class UserInfo {
*/ */
private String engineerCode; private String engineerCode;
/**
* 是否正常 0: 否 1:是 默认1
*/
private Integer status = 1;
} }
...@@ -120,6 +120,12 @@ public class UserEntity implements Serializable { ...@@ -120,6 +120,12 @@ public class UserEntity implements Serializable {
private Integer ban = 0; private Integer ban = 0;
/** /**
* 是否正常 0: 否 1:是 默认1
*/
@Column(name = "status")
private Integer status = 1;
/**
* 用户来源:0:bean 1:新建 * 用户来源:0:bean 1:新建
*/ */
@Column(name = "source") @Column(name = "source")
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!