Commit a9ff3d5b authored by tianyiming's avatar tianyiming

按照单位统一代码查询当前单位下的证

parent 3fb59397
......@@ -98,6 +98,6 @@ public class JgUseRegistrationManageDto extends BaseDto {
private String whetherVehicleCylinder;
@ApiModelProperty(value = "是否气瓶--过滤数据使用 ---目前使用场景:注销报废业务 值为true 只过滤出气瓶的使用登记证)")
private boolean isCyl;
private String isCyl;
}
......@@ -57,8 +57,7 @@
<if test="dto.certificateStatus != null and dto.certificateStatus != ''">
and tjurm.certificate_status = #{dto.certificateStatus}
</if>
--- 注销报废业务 值为true时 过滤出气瓶(不包含车用气瓶)的使用登记证
<if test="dto.isCyl != null and dto.isCyl == 'true' ">
<if test="dto.isCyl != null and dto.isCyl == 1 ">
AND tjurm.reg_type != '车用气瓶登记'
</if>
ORDER BY tjurm.rec_date DESC
......
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