ks_system_dept添加parentDeptId字段

release_1.0.0
xueqingkun 12 months ago
parent a367b5e43c
commit bf19792821

@ -29,6 +29,10 @@ public class SystemDept implements Serializable {
*/
private String deptCode;
/**
* ID
*/
private String parentDeptId;
/**
*
*/

@ -8,6 +8,7 @@
<id property="id" column="id" jdbcType="VARCHAR"/>
<result property="deptName" column="dept_name" jdbcType="VARCHAR"/>
<result property="deptCode" column="dept_code" jdbcType="VARCHAR"/>
<result property="parentDeptId" column="parent_dept_id" jdbcType="VARCHAR"/>
<result property="remark" column="remark" jdbcType="VARCHAR"/>
<result property="createUserId" column="create_user_id" jdbcType="VARCHAR"/>
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
@ -16,7 +17,7 @@
</resultMap>
<sql id="Base_Column_List">
id,dept_name,dept_code,
id,dept_name,dept_code,parent_dept_id,
remark,create_user_id,create_time,
update_user_id,update_time
</sql>

Loading…
Cancel
Save