|
@@ -4,7 +4,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
<mapper namespace="com.ruoyi.system.mapper.InspectInforMapper">
|
|
|
|
|
|
- <resultMap type="InspectInfor" id="InspectInforResult">
|
|
|
+ <resultMap type="com.ruoyi.system.domain.InspectInfor" id="InspectInforResult">
|
|
|
<result property="inspectId" column="inspect_id" />
|
|
|
<result property="sampleName" column="sample_name" />
|
|
|
<result property="sampleNum" column="sample_num" />
|
|
@@ -32,6 +32,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<include refid="selectInspectInforVo"/>
|
|
|
<where>
|
|
|
is_del = 'N'
|
|
|
+ and is_report = 'Y'
|
|
|
<if test="sampleName != null and sampleName != ''"> and sample_name like concat('%', #{sampleName}, '%')</if>
|
|
|
<if test="sampleNum != null "> and sample_num = #{sampleNum}</if>
|
|
|
<if test="normsModel != null and normsModel != ''"> and norms_model = #{normsModel}</if>
|