Commit f9f3a831 by zhangxingmin

增加字段

parent 52bceccb
......@@ -14,7 +14,7 @@
<artifactId>yd-user</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<description>用户管理模块</description>
<description>用户管理服务</description>
<modules>
<module>yd-user-api</module>
......
......@@ -43,6 +43,12 @@ public class SysDept implements Serializable {
private Integer type;
/**
* 组织属性(0-未知 1-保险 2-中介)
*/
@TableField("attribute")
private Integer attribute;
/**
* 部门名称
*/
@TableField("dept_name")
......@@ -85,6 +91,24 @@ public class SysDept implements Serializable {
private Integer status;
/**
* 作用域(1:系统级(全局) 2:租户级 3:项目级)
*/
@TableField("scope")
private Integer scope;
/**
* 所属租户ID(业务id)
*/
@TableField("tenant_biz_id")
private String tenantBizId;
/**
* 所属项目ID(业务id)
*/
@TableField("project_biz_id")
private String projectBizId;
/**
* 通用备注
*/
@TableField("remark")
......
......@@ -130,6 +130,12 @@ public class SysUser implements Serializable {
private Integer sourceType;
/**
* 用户属性(0-未知 1-业务员(销售) 2-签单员)
*/
@TableField("attribute")
private Integer attribute;
/**
* 通用备注
*/
@TableField("remark")
......
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