fix 修复 不同vo相同字段mybatis会自动赋值问题
parent
d2a70b159d
commit
0052436402
|
|
@ -14,10 +14,15 @@
|
||||||
|
|
||||||
<resultMap id="deptResult" type="org.dromara.system.domain.vo.SysDeptVo">
|
<resultMap id="deptResult" type="org.dromara.system.domain.vo.SysDeptVo">
|
||||||
<id property="deptId" column="dept_id"/>
|
<id property="deptId" column="dept_id"/>
|
||||||
|
<id property="email" column="dept_email"/>
|
||||||
|
<id property="status" column="dept_status"/>
|
||||||
|
<id property="createTime" column="dept_create_time"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<resultMap id="RoleResult" type="org.dromara.system.domain.vo.SysRoleVo">
|
<resultMap id="RoleResult" type="org.dromara.system.domain.vo.SysRoleVo">
|
||||||
<id property="roleId" column="role_id"/>
|
<id property="roleId" column="role_id"/>
|
||||||
|
<id property="status" column="role_status"/>
|
||||||
|
<id property="createTime" column="role_create_time"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<sql id="selectUserVo">
|
<sql id="selectUserVo">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue