Commit 24de7f55 authored by tangwei's avatar tangwei

修改bug

parent cdcc4a62
...@@ -33,4 +33,6 @@ public class EquipmentSpecificDto extends BaseDTO<EquipmentSpecificDto> { ...@@ -33,4 +33,6 @@ public class EquipmentSpecificDto extends BaseDTO<EquipmentSpecificDto> {
private String team; private String team;
private String carId; private String carId;
private String bizOrgCode;
} }
\ No newline at end of file
...@@ -69,4 +69,5 @@ public class EquipmentOnCarVo { ...@@ -69,4 +69,5 @@ public class EquipmentOnCarVo {
private String equipDefinitionName; private String equipDefinitionName;
private String bizOrgCode;
} }
...@@ -39,4 +39,6 @@ public class EquipSpecificDto extends BaseEntity { ...@@ -39,4 +39,6 @@ public class EquipSpecificDto extends BaseEntity {
*/ */
private Page<?> page; private Page<?> page;
private String bizOrgCode;
} }
...@@ -1074,6 +1074,12 @@ ...@@ -1074,6 +1074,12 @@
<if test="vo.agencyId != null and vo.agencyId != ''"> <if test="vo.agencyId != null and vo.agencyId != ''">
AND es.`agency_id` = #{vo.agencyId} AND es.`agency_id` = #{vo.agencyId}
</if> </if>
<if test="vo.bizOrgCode != null and vo.bizOrgCode != ''">
AND es.`biz_org_code` LIKE CONCAT(#{vo.bizOrgCode}, '%')
</if>
AND sd.amount > 0 AND sd.amount > 0
</where> </where>
GROUP BY GROUP BY
......
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