RightsDao.xml 759 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.zglc.kg.dao.RightsDao">
  4. <!-- 可根据自己的需求,是否要使用 -->
  5. <resultMap type="com.zglc.kg.entity.RightsEntity" id="rightsMap">
  6. <result property="id" column="id"/>
  7. <result property="rightsPath" column="rights_path"/>
  8. <result property="rightsName" column="rights_name"/>
  9. <result property="remark" column="remark"/>
  10. <result property="isHide" column="is_hide"/>
  11. </resultMap>
  12. <select id="listAll" resultMap="rightsMap">
  13. select id,rights_name,is_hide,rights_path,remark
  14. from t_rights
  15. </select>
  16. </mapper>