wangchangsheng 3 лет назад
Родитель
Сommit
370b53de96

+ 27 - 0
src/main/java/com/gyee/viewticket/config/ServerConfig.java

@@ -0,0 +1,27 @@
+package com.gyee.viewticket.config;
+
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Component;
+
+import java.net.InetAddress;
+import java.net.UnknownHostException;
+
+@Component
+public class ServerConfig {
+
+    @Value("${server.port}")
+    private int serverPort;
+
+    public String getUrl() {
+        InetAddress address = null;
+        try {
+            address = InetAddress.getLocalHost();
+        } catch (UnknownHostException e) {
+            e.printStackTrace();
+        }
+        String url = "http://"+address.getHostAddress() +":"+this.serverPort;
+        return url;
+    }
+
+
+}

+ 24 - 1
src/main/java/com/gyee/viewticket/controller/viewticket/EquoperationrecordController.java

@@ -5,6 +5,8 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.gyee.viewticket.comm.domain.AjaxResult;
 import com.gyee.viewticket.service.ticket.EquoperationrecordService;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.*;
 
@@ -24,7 +26,7 @@ import java.util.Map;
 public class EquoperationrecordController {
 
 
-
+    private static final Logger log = LoggerFactory.getLogger(EquoperationrecordController.class);
     @Autowired
     EquoperationrecordService equoperationrecordService;
 
@@ -53,9 +55,30 @@ public class EquoperationrecordController {
              IPage<Map> list = equoperationrecordService.getEquoperationrecordPageList(page,startTime,endTime,wtid,type);
              return AjaxResult.successData(list);
          } catch (Exception e) {
+             log.error("操作失败",e);
              return AjaxResult.error();
          }
      }
 
+    /**
+     * top4
+     * @param stId
+     * @return
+     */
+    @GetMapping(value = "top4")
+    public AjaxResult getEquoperationrecordTop4(
+            @RequestParam(value = "stId",required = false)String stId
+        ){
+        try {
+            if(null ==stId || "0".equals(stId.trim())){
+                stId = "";
+            }
+            List<Map> list = equoperationrecordService.getEquoperationrecordTope(stId);
+            return AjaxResult.successData(list);
+        } catch (Exception e) {
+            log.error("操作失败",e);
+            return AjaxResult.error();
+        }
+    }
 }
 

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

@@ -29,4 +29,8 @@ public interface EquoperationrecordMapper extends BaseMapper<Equoperationrecord>
                                                 @Param("wtid")String wtid,
                                                 @Param("type")String type);
 
+
+
+   List<Map> selectEquoperationrecordTop4(String stId);
+
 }

+ 43 - 1
src/main/java/com/gyee/viewticket/service/impl/ticket/EquoperationrecordServiceImpl.java

@@ -2,13 +2,18 @@ package com.gyee.viewticket.service.impl.ticket;
 
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.gyee.viewticket.config.ServerConfig;
 import com.gyee.viewticket.model.ticket.Equoperationrecord;
 import com.gyee.viewticket.mapper.ticket.EquoperationrecordMapper;
 import com.gyee.viewticket.service.ticket.EquoperationrecordService;
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 
+import java.util.ArrayList;
+import java.util.HashMap;
 import java.util.List;
 import java.util.Map;
 
@@ -23,13 +28,50 @@ import java.util.Map;
 @Service
 public class EquoperationrecordServiceImpl extends ServiceImpl<EquoperationrecordMapper, Equoperationrecord> implements EquoperationrecordService {
 
-
+    private static final Logger log = LoggerFactory.getLogger(EquoperationrecordServiceImpl.class);
     @Autowired
     private EquoperationrecordMapper equoperationrecordMapper;
+    @Autowired
+    private ServerConfig serverConfig;
 
     @Override
     public IPage<Map> getEquoperationrecordPageList(Page page, String startTime, String endTime, String wtid,String type) {
         IPage<Map> list =  equoperationrecordMapper.selectEquoperationrecordPageList(page,startTime,endTime,wtid,type);
         return list;
     }
+
+    @Override
+    public List<Map> getEquoperationrecordTope(String stId) throws Exception{
+        String url = serverConfig.getUrl()+"/img/";
+        log.info(url);
+        List<Map> maps = new ArrayList<>();
+       List<Map> list =  equoperationrecordMapper.selectEquoperationrecordTop4(stId);
+        for (Map e: list) {
+            Map map = new HashMap();
+            map.put("id",e.get("id"));
+            map.put("starttime",e.get("starttime"));
+            map.put("endtime",e.get("endtime"));
+            map.put("type",e.get("type"));
+            map.put("tolocdes",e.get("tolocdes"));
+            map.put("problem",e.get("problem"));
+            map.put("solveway",e.get("solveway"));
+            if(null == e.get("labornum") || "".equals(e.get("labornum"))){
+                map.put("imgurl","");
+            }else {
+                String labornum = e.get("labornum").toString().toLowerCase();
+                map.put("imgurl",url+labornum+".jpg");
+            }
+            map.put("labornum",e.get("labornum"));
+            map.put("laborname",e.get("laborname"));
+            map.put("jobcode",e.get("jobcode"));
+            map.put("employeetype",e.get("employeetype"));
+            map.put("ticketnum",e.get("ticketnum"));
+            map.put("wfshortname",e.get("wfshortname"));
+            map.put("wfname",e.get("wfname"));
+            maps.add(map);
+        }
+        return maps;
+    }
+
+
 }

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

@@ -22,4 +22,7 @@ public interface EquoperationrecordService extends IService<Equoperationrecord>
 
     IPage<Map> getEquoperationrecordPageList(Page page, String startTime, String endTime, String wtid,String type);
 
+
+    List<Map> getEquoperationrecordTope(String stId) throws Exception;
+
 }

+ 7 - 1
src/main/resources/application.yml

@@ -15,7 +15,7 @@ spring:
   datasource:
     driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
     type: com.alibaba.druid.pool.DruidDataSource
-    url: jdbc:sqlserver://10.155.32.2:1433;DatabaseName=test
+    url: jdbc:sqlserver://10.155.32.2:1433;DatabaseName=fdtest
     username: sa
     password: Gyee@321#!
     maxActive: 20
@@ -30,6 +30,8 @@ spring:
     testOnReturn: true
     poolPreparedStatements: true
     maxOpenPreparedStatements: 20
+  resources:
+    static-locations: classpath:/static/
 
 logging:
   level:
@@ -41,3 +43,7 @@ logging:
 
 
 
+
+
+
+

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

@@ -59,8 +59,41 @@
             </if>
 
         </where>
+    </select>
+
+    <select id="selectEquoperationrecordTop4"
+            resultType="java.util.Map">
+            select
+                top 4 e.id,
+                e.starttime,
+                e.endtime,
+                e.type,
+                e.tolocdes,
+                e.problem,
+                e.solveway,
+                u.labornum,
+                u.laborname,
+                u.jobcode,
+                u.employeetype,
+                w.ticketnum,
+                w.wonum,
+                f.wfshortname,
+                f.wfname
+            from
+                equoperationrecord e
+            left join labor u on e.leader = u.laborname
+            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>
 
+            </where>
+            order by
+            e.starttime desc
     </select>
 
 </mapper>