质检人员管理分页查询新增质检类型作为查询条件

This commit is contained in:
funny 2026-04-28 08:07:39 +08:00
parent 0510c711a9
commit 93924b741a
2 changed files with 8 additions and 0 deletions

View File

@ -22,4 +22,9 @@ public class QmsQualityInspectorSearchQO extends PageQO {
* 物料编号模糊匹配 * 物料编号模糊匹配
*/ */
private String materialNo; private String materialNo;
/**
* 质检类型
*/
private Integer inspectionType;
} }

View File

@ -47,6 +47,9 @@
AND m.material_no ilike concat('%', #{request.materialNo}, '%') AND m.material_no ilike concat('%', #{request.materialNo}, '%')
) )
</if> </if>
<if test="request.inspectionType != null">
AND qi.inspection_type = #{request.inspectionType}
</if>
</where> </where>
ORDER BY qi.id DESC ORDER BY qi.id DESC
</select> </select>