|
@@ -57,11 +57,11 @@
|
|
|
select b.BERTHTYPE, b.CAPACITY, i.STARTTIME, i.ENDTIME, i.ELECT
|
|
|
from GHJG_PORT_MANAGE.SHORE_POWER_CONN_RECORD_INFO i
|
|
|
left join GHJG_PORT_MANAGE.SHORE_POWER_BERTH_INFO_NEW b on i.BERTHID = b.BERTHID
|
|
|
- where (i.STARTTIME >= #{startDate}
|
|
|
- and i.STARTTIME <= #{endDate})
|
|
|
+ where b.BERTHTYPE is not null
|
|
|
+ AND ((i.STARTTIME >= #{startDate}
|
|
|
+ AND i.STARTTIME <= #{endDate})
|
|
|
OR (i.STARTTIME >= #{newStartDate} and i.STARTTIME <= #{newStartEnd} AND
|
|
|
- i.MODIFYTIME >= #{startDate} and i.MODIFYTIME <= #{endDate})
|
|
|
- AND b.BERTHTYPE is not null
|
|
|
+ i.MODIFYTIME >= #{startDate} and i.MODIFYTIME <= #{endDate}))
|
|
|
</select>
|
|
|
<select id="selectQuarterBlBerth" resultType="com.shcd.vo.SpQuarterReportBlVo">
|
|
|
select B.BERTH_TYPE berthType, b.TONNAGE capacity , m.USE_COUNT useCount, m.ELE_TIME elect, m.USE_ELECTRICITY useElectricity
|