Commit 7e58aa67 authored by 麻笑宇's avatar 麻笑宇

检验检测 / 检验检测人员统计

下钻代码修改
parent 656c87d1
......@@ -189,5 +189,17 @@ public class DPFilterParamForDetailDto {
/**
* 下次检验日期
*/
private String nextInspectionDate;
private String nextInspectionDate;
/**
* 姓名
*/
private String userName;
/**
* 手机号
*/
private String phone;
/**
* 证件号码
*/
private String certificateNum;
}
......@@ -222,6 +222,15 @@
bi.unit_type LIKE concat ( '%', #{item}, '%' )
</foreach>
</if>
<if test="dpFilterParamDto.userName != null and dpFilterParamDto.userName != ''">
and tui.name LIKE concat ( '%', #{dpFilterParamDto.userName}, '%' )
</if>
<if test="dpFilterParamDto.phone != null and dpFilterParamDto.phone != ''">
and tui.phone LIKE concat ( '%', #{dpFilterParamDto.phone}, '%' )
</if>
<if test="dpFilterParamDto.certificateNum != null and dpFilterParamDto.certificateNum != ''">
and tui.certificate_num LIKE concat ( '%', #{dpFilterParamDto.certificateNum}, '%' )
</if>
group by tui.sequence_nbr
</select>
</mapper>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment