@@ -104,6 +104,19 @@ public class EquoperationrecordController {
+ @GetMapping(value = "equupdatecount")
+ public AjaxResult getEquUpdateCount(@RequestParam(value = "stId", required = false) String stId) {
+ try {
+ List<Map> list = equoperationrecordService.getEquUpdateCount(stId);
+ return AjaxResult.successData(list);
+ } catch (Exception e) {
+ log.error("操作失败",e);
+ return AjaxResult.error();
+ }
+
}
@@ -33,4 +33,11 @@ public interface EquoperationrecordMapper extends BaseMapper<Equoperationrecord>
List<Map> selectEquoperationrecordTop4(String stId,String wtId,String beginDate,String endDate);
+ List<Map> selectEquUpdateCount(String stId);
@@ -74,5 +74,15 @@ public class EquoperationrecordServiceImpl extends ServiceImpl<Equoperationrecor
return list;
+ @Override
+ public List<Map> getEquUpdateCount(String stId) {
+ List<Map> list = equoperationrecordMapper.selectEquUpdateCount(stId);
+ int code = 10000;
+ for (Map e : list) {
+ e.put("classid",""+code++);
+ return list;
@@ -25,4 +25,6 @@ public interface EquoperationrecordService extends IService<Equoperationrecord>
List<Map> getEquoperationrecordTope(String stId,String wtId,String beginDate,String endDate) throws Exception;
+ List<Map> getEquUpdateCount(String stId);
@@ -116,4 +116,23 @@
e.starttime desc
</select>
+ <select id="selectEquUpdateCount" resultType="java.util.Map">
+ select
+ l.description,count(l.description) as count
+ from
+ equoperationrecord e
+ left join equipment l on e.toloc = l.location
+ left join workticket w on w.wonum = e.wonum
+ left join windfarm f on w.workdept = f.wfname
+ <where>
+ <if test=" '' != stid and null != stid ">
+ and f.wfshortname = #{stid}
+ </if>
+ and e.type = '异动'
+ </where>
+ group by l.description
+ </select>
</mapper>