Commit c70870ba authored by 吴江's avatar 吴江

Merge branch 'developer' into 'developer_bw'

Developer See merge request !23
parents d02986b3 f16b3dfd
...@@ -94,5 +94,7 @@ public class JpCollectorDto extends BaseDto { ...@@ -94,5 +94,7 @@ public class JpCollectorDto extends BaseDto {
@ApiModelProperty(value = "流量到期时间", example = "2036-12-31 23:59:59") @ApiModelProperty(value = "流量到期时间", example = "2036-12-31 23:59:59")
private String contractTimeStr; private String contractTimeStr;
@ApiModelProperty(value = "项目公司")
private String regionalCompaniesCode;
} }
...@@ -125,5 +125,7 @@ public class JpInverterDto extends BaseDto { ...@@ -125,5 +125,7 @@ public class JpInverterDto extends BaseDto {
@ApiModelProperty(value = "投运时间") @ApiModelProperty(value = "投运时间")
private String fisTimeStr; private String fisTimeStr;
@ApiModelProperty(value = "项目公司")
private String regionalCompaniesCode;
} }
...@@ -70,6 +70,9 @@ ...@@ -70,6 +70,9 @@
<if test="dto.stationName != null and dto.stationName !=''"> <if test="dto.stationName != null and dto.stationName !=''">
AND hjc.station_name like concat('%',#{dto.stationName},'%') AND hjc.station_name like concat('%',#{dto.stationName},'%')
</if> </if>
<if test="dto.regionalCompaniesCode!=null and dto.regionalCompaniesCode != ''">
and sta.regional_companies_code = #{dto.regionalCompaniesCode}
</if>
</where> </where>
ORDER BY CASE ORDER BY CASE
WHEN hjc.state = '报警' THEN 1 WHEN hjc.state = '报警' THEN 1
...@@ -97,6 +100,9 @@ ...@@ -97,6 +100,9 @@
<if test="dto.state != null and dto.state !=''"> <if test="dto.state != null and dto.state !=''">
hjc.state = #{dto.state} hjc.state = #{dto.state}
</if> </if>
<if test="dto.stationName != null and dto.stationName !=''">
AND hjc.station_name like concat('%',#{dto.stationName},'%')
</if>
</where> </where>
</select> </select>
<select id="selectInverterState" resultType="java.util.Map"> <select id="selectInverterState" resultType="java.util.Map">
......
...@@ -92,6 +92,9 @@ ...@@ -92,6 +92,9 @@
<if test="dto.stationName != null and dto.stationName !=''"> <if test="dto.stationName != null and dto.stationName !=''">
AND hjc.station_name like concat('%',#{dto.stationName},'%') AND hjc.station_name like concat('%',#{dto.stationName},'%')
</if> </if>
<if test="dto.regionalCompaniesCode!=null and dto.regionalCompaniesCode != ''">
and sta.regional_companies_code = #{dto.regionalCompaniesCode}
</if>
</where> </where>
ORDER BY CASE ORDER BY CASE
WHEN hjc.state = '报警' THEN 1 WHEN hjc.state = '报警' THEN 1
...@@ -122,6 +125,12 @@ ...@@ -122,6 +125,12 @@
<if test="dto.maxValue != null and dto.maxValue !=''"> <if test="dto.maxValue != null and dto.maxValue !=''">
AND hjc.capacity <![CDATA[<=]]> #{dto.maxValue} AND hjc.capacity <![CDATA[<=]]> #{dto.maxValue}
</if> </if>
<if test="dto.stationName != null and dto.stationName !=''">
AND hjc.station_name like concat('%',#{dto.stationName},'%')
</if>
<if test="dto.regionalCompaniesCode!=null and dto.regionalCompaniesCode != ''">
and sta.regional_companies_code = #{dto.regionalCompaniesCode}
</if>
</where> </where>
</select> </select>
<select id="selectInverterState" resultType="java.util.Map"> <select id="selectInverterState" resultType="java.util.Map">
......
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