|
|
@@ -0,0 +1,25 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
+<!DOCTYPE mapper
|
|
|
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
+<mapper namespace="org.dromara.system.right.mapper.UserDeptMapper">
|
|
|
+
|
|
|
+ <resultMap type="org.dromara.system.right.domain.UserDept" id="UserDeptResult">
|
|
|
+ <result property="userDeptId" column="user_dept_id" />
|
|
|
+ <result property="tenantId" column="tenant_id" />
|
|
|
+ <result property="userId" column="user_id" />
|
|
|
+ <result property="deptId" column="dept_id" />
|
|
|
+ <result property="postId" column="post_id" />
|
|
|
+ <result property="mainDept" column="main_dept" />
|
|
|
+ <result property="checkStatus" column="check_status" />
|
|
|
+ <result property="checkDate" column="check_date" />
|
|
|
+ <result property="payStatus" column="pay_status" />
|
|
|
+ <result property="payDate" column="pay_date" />
|
|
|
+ <result property="delFlag" column="del_flag" />
|
|
|
+ <result property="createDept" column="create_dept" />
|
|
|
+ <result property="createBy" column="create_by" />
|
|
|
+ <result property="createTime" column="create_time" />
|
|
|
+ <result property="updateBy" column="update_by" />
|
|
|
+ <result property="updateTime" column="update_time" />
|
|
|
+ </resultMap>
|
|
|
+</mapper>
|