1、特种作业类别项目搜索

main
shenzhidan 2026-02-05 08:31:42 +08:00
parent 84e57c4eb2
commit a4e53d24f2
2 changed files with 24 additions and 0 deletions

View File

@ -46,6 +46,18 @@ public class UserCertificatePageQry extends PageQuery {
@ApiModelProperty(value = "操作项目code-特种作业使用", name = "eqIndustryOperatingItemsCode") @ApiModelProperty(value = "操作项目code-特种作业使用", name = "eqIndustryOperatingItemsCode")
private String eqIndustryOperatingItemsCode; private String eqIndustryOperatingItemsCode;
/**
* code-使
*/
@ApiModelProperty(value = "作业类别code-特种设备使用", name = "eqAssignmentCategoryCode")
private String eqAssignmentCategoryCode;
/**
* -code-使
*/
@ApiModelProperty(value = "作业类别-操作项目code-特种设备使用", name = "eqAssignmentOperatingItemsCode")
private String eqAssignmentOperatingItemsCode;
/** /**
* *
*/ */

View File

@ -40,6 +40,12 @@
<if test="params.eqIndustryOperatingItemsCode != null and params.eqIndustryOperatingItemsCode != ''"> <if test="params.eqIndustryOperatingItemsCode != null and params.eqIndustryOperatingItemsCode != ''">
AND uc.industry_operating_items_code = #{params.eqIndustryOperatingItemsCode} AND uc.industry_operating_items_code = #{params.eqIndustryOperatingItemsCode}
</if> </if>
<if test="params.eqAssignmentCategoryCode != null and params.eqAssignmentCategoryCode != ''">
AND uc.assignment_category_code = #{params.eqAssignmentCategoryCode}
</if>
<if test="params.eqAssignmentOperatingItemsCode != null and params.eqAssignmentOperatingItemsCode != ''">
AND uc.assignment_operating_items_code = #{params.eqAssignmentOperatingItemsCode}
</if>
<if test="params.eqType != null and params.eqType != ''"> <if test="params.eqType != null and params.eqType != ''">
AND uc.type = #{params.eqType} AND uc.type = #{params.eqType}
</if> </if>
@ -92,6 +98,12 @@
<if test="params.eqIndustryOperatingItemsCode != null and params.eqIndustryOperatingItemsCode != ''"> <if test="params.eqIndustryOperatingItemsCode != null and params.eqIndustryOperatingItemsCode != ''">
AND uc.industry_operating_items_code = #{params.eqIndustryOperatingItemsCode} AND uc.industry_operating_items_code = #{params.eqIndustryOperatingItemsCode}
</if> </if>
<if test="params.eqAssignmentCategoryCode != null and params.eqAssignmentCategoryCode != ''">
AND uc.assignment_category_code = #{params.eqAssignmentCategoryCode}
</if>
<if test="params.eqAssignmentOperatingItemsCode != null and params.eqAssignmentOperatingItemsCode != ''">
AND uc.assignment_operating_items_code = #{params.eqAssignmentOperatingItemsCode}
</if>
<if test="params.eqType != null and params.eqType != ''"> <if test="params.eqType != null and params.eqType != ''">
AND uc.type = #{params.eqType} AND uc.type = #{params.eqType}
</if> </if>