Quellcode durchsuchen

更换统计查询

wangchangsheng vor 3 Jahren
Ursprung
Commit
b67d065cdc

+ 13 - 0
src/main/java/com/gyee/viewticket/controller/viewticket/EquoperationrecordController.java

@@ -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();
+        }
+    }
+
+
+
 
 }
 

+ 7 - 0
src/main/java/com/gyee/viewticket/mapper/ticket/EquoperationrecordMapper.java

@@ -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);
+
+
+
+
 }

+ 10 - 0
src/main/java/com/gyee/viewticket/service/impl/ticket/EquoperationrecordServiceImpl.java

@@ -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;
+    }
+
 
 }

+ 2 - 0
src/main/java/com/gyee/viewticket/service/ticket/EquoperationrecordService.java

@@ -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);
+
 }

+ 19 - 0
src/main/resources/mapper/ticket/EquoperationrecordMapper.xml

@@ -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>