| | |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.ruoyi.system.mapper.SysPostMapper"> |
| | | |
| | | <resultMap type="SysPost" id="SysPostResult"> |
| | | <id property="postId" column="post_id"/> |
| | | <result property="postCode" column="post_code"/> |
| | | <result property="postName" column="post_name"/> |
| | | <result property="postSort" column="post_sort"/> |
| | | <result property="status" column="status"/> |
| | | <result property="createBy" column="create_by"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="remark" column="remark"/> |
| | | <resultMap type="com.ruoyi.system.domain.SysPost" id="SysPostResult"> |
| | | </resultMap> |
| | | |
| | | <select id="selectPostListByUserId" parameterType="Long" resultType="Long"> |