1、特种作业类别项目搜索
parent
84e57c4eb2
commit
a4e53d24f2
|
|
@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 人员类型
|
* 人员类型
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue