TWW
2025-08-08 6873d560b235e04a2e95c8240f00dc8e8b6e1ac6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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.ruoyi.personnelManagement.mapper.EmployeeContractMapper">
 
    <select id="contractList" resultType="com.ruoyi.personnelManagement.pojo.EmployeeContract">
 
        select *
        from employee_contract
        where contract_id =  #{employeeContract.contractId}
 
    </select>
 
 
</mapper>