DepartmentMapper.xml 1.1 KB

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.management.platform.mapper.DepartmentMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.management.platform.entity.Department">
  6. <id column="department_id" property="departmentId" />
  7. <result column="department_name" property="departmentName" />
  8. <result column="superior_id" property="superiorId" />
  9. <result column="company_id" property="companyId" />
  10. <result column="manager_id" property="managerId" />
  11. <result column="report_audit_userid" property="reportAuditUserid" />
  12. <result column="corpwx_deptid" property="corpwxDeptid" />
  13. <result column="corpwx_deptpid" property="corpwxDeptpid" />
  14. </resultMap>
  15. <!-- 通用查询结果列 -->
  16. <sql id="Base_Column_List">
  17. department_id, department_name, superior_id, company_id, manager_id, report_audit_userid, corpwx_deptid, corpwx_deptpid
  18. </sql>
  19. </mapper>