Crunchy
2024-04-23 4f986140a10e71c07c7001ccbcda6e93e17736b1
cnas-server/src/main/resources/mapper/SealMapper.xml
对比新文件
@@ -0,0 +1,17 @@
<?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.yuanchu.mom.mapper.SealMapper">
    <select id="selectSeal" resultType="com.yuanchu.mom.pojo.Seal">
        select * from seal
        <if test="ew.customSqlSegment != null and ew.customSqlSegment != ''">
            ${ew.customSqlSegment}
        </if>
    </select>
    <select id="selectLaboratory" resultType="com.yuanchu.mom.pojo.Laboratory">
        SELECT *
        from laboratory
        WHERE id =#{labId}
    </select>
</mapper>