1234567891011121314151617181920 |
- <?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="com.zglc.kg.dao.RightsDao">
- <!-- 可根据自己的需求,是否要使用 -->
- <resultMap type="com.zglc.kg.entity.RightsEntity" id="rightsMap">
- <result property="id" column="id"/>
- <result property="rightsPath" column="rights_path"/>
- <result property="rightsName" column="rights_name"/>
- <result property="remark" column="remark"/>
- <result property="isHide" column="is_hide"/>
- </resultMap>
- <select id="listAll" resultMap="rightsMap">
- select id,rights_name,is_hide,rights_path,remark
- from t_rights
- </select>
- </mapper>
|