<?xml version="1.0" encoding="UTF-8"?> <!-- ~ ~ Copyright (c) 2018-2025, lengleng All rights reserved. ~ ~ Redistribution and use in source and binary forms, with or without ~ modification, are permitted provided that the following conditions are met: ~ ~ Redistributions of source code must retain the above copyright notice, ~ this list of conditions and the following disclaimer. ~ Redistributions in binary form must reproduce the above copyright ~ notice, this list of conditions and the following disclaimer in the ~ documentation and/or other materials provided with the distribution. ~ Neither the name of the yifu4cloud.com developer nor the names of its ~ contributors may be used to endorse or promote products derived from ~ this software without specific prior written permission. ~ Author: lengleng (wangiegie@gmail.com) ~ --> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.yifu.cloud.plus.v1.yifu.archives.mapper.TEmpDisabilityInfoMapper"> <resultMap id="tEmpDisabilityInfoMap" type="com.yifu.cloud.plus.v1.yifu.archives.entity.TEmpDisabilityInfo"> <id property="id" column="ID"/> <result property="empId" column="EMP_ID"/> <result property="empName" column="EMP_NAME"/> <result property="empCode" column="EMP_CODE"/> <result property="empIdcard" column="EMP_IDCARD"/> <result property="disabilityName" column="DISABILITY_NAME"/> <result property="disabilityLevel" column="DISABILITY_LEVEL"/> <result property="injuryIdentification" column="INJURY_IDENTIFICATION"/> <result property="startTime" column="START_TIME"/> <result property="endTime" column="END_TIME"/> <result property="occupationalDisease" column="OCCUPATIONAL_DISEASE"/> <result property="settleDomain" column="SETTLE_DOMAIN"/> <result property="deleteFlag" column="DELETE_FLAG"/> <result property="createBy" column="CREATE_BY"/> <result property="updateBy" column="UPDATE_BY"/> <result property="createName" column="CREATE_NAME"/> <result property="createTime" column="CREATE_TIME"/> <result property="updateTime" column="UPDATE_TIME"/> <result property="remark" column="REMARK"/> <result property="occupationalDiseaseFlag" column="OCCUPATIONAL_DISEASE_FLAG"/> <result property="infectiousDiseaseFlag" column="INFECTIOUS_DISEASE_FLAG"/> <result property="infectiousName" column="INFECTIOUS_NAME"/> <result property="disabilityFlag" column="DISABILITY_FLAG"/> <result property="otherFlag" column="OTHER_FLAG"/> </resultMap> <sql id="Base_Column_List"> a.ID, a.EMP_ID, a.EMP_NAME, a.EMP_CODE, a.EMP_IDCARD, a.DISABILITY_NAME, a.DISABILITY_LEVEL, a.INJURY_IDENTIFICATION, a.START_TIME, a.END_TIME, a.OCCUPATIONAL_DISEASE, a.DELETE_FLAG, a.SETTLE_DOMAIN, a.CREATE_BY, a.UPDATE_BY, a.CREATE_NAME, a.CREATE_TIME, a.UPDATE_TIME, a.REMARK, a.OCCUPATIONAL_DISEASE_FLAG, a.INFECTIOUS_DISEASE_FLAG, a.INFECTIOUS_NAME, a.DISABILITY_FLAG, a.OTHER_FLAG, a.OTHER_FLAG </sql> <select id="getTEmpDisabilityByIdCardList" resultMap="tEmpDisabilityInfoMap"> SELECT <include refid="Base_Column_List"/> FROM t_emp_disability_info a where a.EMP_IDCARD in <foreach item="item" index="index" collection="idCardList" open="(" separator="," close=")"> #{item} </foreach> GROUP BY a.EMP_IDCARD </select> </mapper>