智慧保安后台管理项目备份
tangzy
2021-07-08 11d2e2cbc4f12a7bb85408f3676e9f5e2dcf359d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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="org.springblade.modules.performance.mapper.PerformanceMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="performanceResultMap" type="org.springblade.modules.performance.entity.Performance">
        <id column="id" property="id"/>
        <result column="securityId" property="securityid"/>
        <result column="workingAttitude" property="workingattitude"/>
        <result column="workingAbility" property="workingability"/>
        <result column="Achievements" property="achievements"/>
        <result column="score" property="score"/>
        <result column="time" property="time"/>
        <result column="tenantId" property="tenantid"/>
    </resultMap>
 
 
    <select id="selectPerformancePage" resultMap="performanceResultMap">
        select * from sys_performance where is_deleted = 0
    </select>
 
</mapper>