2025-09-24 15:41:17 +08:00
|
|
|
<?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.czlis.interfaceCommon.mapper.LabInputcolMapper">
|
|
|
|
|
<select id="getLabInputcol" resultType="com.czlis.common.core.domain.entity.lis.LabInputcol">
|
2025-10-15 16:27:32 +08:00
|
|
|
SELECT * FROM lab_inputcol where yq = #{yq} order by xh ASC
|
2025-09-24 15:41:17 +08:00
|
|
|
</select>
|
|
|
|
|
</mapper>
|
|
|
|
|
|
|
|
|
|
|