Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/thinkgem/jeesite
Browse files Browse the repository at this point in the history
  • Loading branch information
think-gem committed Feb 5, 2018
2 parents 533d88c + 348cc76 commit 4ad385a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import com.thinkgem.jeesite.modules.sys.entity.User;

/**
* 字典工具类
* 日志工具类
* @author ThinkGem
* @version 2014-11-7
*/
Expand Down
6 changes: 5 additions & 1 deletion src/main/resources/mappings/modules/sys/RoleDao.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

<resultMap id="roleResult" type="Role">
<id property="id" column="id" />
<association property="office" javaType="Office">
<id property="id" column="office.id" />
<id property="name" column="office.name" />
</association>
<result property="name" column="name" />
<result property="enname" column="enname" />
<result property="roleType" column="roleType" />
Expand Down Expand Up @@ -201,4 +205,4 @@
WHERE id = #{id}
</update>

</mapper>
</mapper>

0 comments on commit 4ad385a

Please sign in to comment.