|
@@ -15,11 +15,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="updateTime" column="update_time" />
|
|
<result property="updateTime" column="update_time" />
|
|
<result property="isDel" column="is_del" />
|
|
<result property="isDel" column="is_del" />
|
|
|
|
+ <result property="ancestors" column="ancestors" />
|
|
<result property="remark" column="remark" />
|
|
<result property="remark" column="remark" />
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectAdministrativeInfoVo">
|
|
<sql id="selectAdministrativeInfoVo">
|
|
- select d.id,d.parent_id, d.dept_name as administrative_name, d.status, d.create_by, d.create_time, d.update_by, d.update_time from sys_dept d
|
|
|
|
|
|
+ select d.id,d.parent_id, d.dept_name as administrative_name,d.ancestors as ancestors , d.status, d.create_by, d.create_time, d.update_by, d.update_time from sys_dept d
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
<select id="selectAdministrativeInfoList" parameterType="com.boman.web.core.domain.AdministrativeInfo" resultMap="AdministrativeInfoResult">
|
|
<select id="selectAdministrativeInfoList" parameterType="com.boman.web.core.domain.AdministrativeInfo" resultMap="AdministrativeInfoResult">
|