| | |
| | | <if test="positional != null"> |
| | | and aa.positional = #{positional} |
| | | </if> |
| | | <if test="startTime != '' and startTime != null" > |
| | | and aa.create_time >= #{startTime} |
| | | </if> |
| | | <if test="endTime != '' and endTime != null" > |
| | | and aa.create_time <= #{endTime} |
| | | </if> |
| | | order by aa.create_time desc |
| | | </select> |
| | | |
| | | <select id="getEmployeeRecordList" parameterType="long" |
| | | resultType="com.gkhy.exam.system.domain.EmployeeRecord"> |
| | | resultType="com.gkhy.exam.system.domain.vo.EmployeeRecordVO"> |
| | | select |
| | | a.name, |
| | | aa.employee_id employeeId, aa.user_id userId |