|
@@ -11,6 +11,7 @@ import com.gyee.runeconomy.config.GyeeConfig;
|
|
import com.gyee.runeconomy.init.CacheContext;
|
|
import com.gyee.runeconomy.init.CacheContext;
|
|
import com.gyee.runeconomy.mapper.PowerLossesMapper;
|
|
import com.gyee.runeconomy.mapper.PowerLossesMapper;
|
|
import com.gyee.runeconomy.model.PowerLosses;
|
|
import com.gyee.runeconomy.model.PowerLosses;
|
|
|
|
+import com.gyee.runeconomy.model.PowerLossesDTO;
|
|
import com.gyee.runeconomy.model.StatusTime;
|
|
import com.gyee.runeconomy.model.StatusTime;
|
|
import com.gyee.runeconomy.model.auto.PointInfo;
|
|
import com.gyee.runeconomy.model.auto.PointInfo;
|
|
import com.gyee.runeconomy.model.auto.ProBasicEquipment;
|
|
import com.gyee.runeconomy.model.auto.ProBasicEquipment;
|
|
@@ -26,6 +27,10 @@ import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
import javax.annotation.Resource;
|
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
|
+import java.time.LocalDate;
|
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
+import java.time.format.DateTimeFormatter;
|
|
import java.util.*;
|
|
import java.util.*;
|
|
|
|
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
@@ -83,10 +88,22 @@ public class AgcDeviateController {
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
@GetMapping("/xdloss")
|
|
@GetMapping("/xdloss")
|
|
- public List<PowerLosses> getxdData() {
|
|
|
|
|
|
+ public List<PowerLossesDTO> getxdData() {
|
|
QueryWrapper<PowerLosses> queryWrapper = new QueryWrapper<>();
|
|
QueryWrapper<PowerLosses> queryWrapper = new QueryWrapper<>();
|
|
List<PowerLosses> powerLosses = powerLossesMapper.selectList(queryWrapper);
|
|
List<PowerLosses> powerLosses = powerLossesMapper.selectList(queryWrapper);
|
|
- return powerLosses;
|
|
|
|
|
|
+ List<PowerLossesDTO> dtos = new ArrayList<>();
|
|
|
|
+ DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS");
|
|
|
|
+ for (PowerLosses pl : powerLosses) {
|
|
|
|
+ PowerLossesDTO dto = new PowerLossesDTO();
|
|
|
|
+ dto.setId(pl.getId());
|
|
|
|
+ dto.setId(dto.getId());
|
|
|
|
+ dto.setStartTime(pl.getStartTime().format(formatter));
|
|
|
|
+ dto.setEndTime(pl.getEndTime().format(formatter));
|
|
|
|
+ dto.setXdss(pl.getXdss());
|
|
|
|
+ dto.setRecordDate(pl.getRecordDate());
|
|
|
|
+ dtos.add(dto);
|
|
|
|
+ }
|
|
|
|
+ return dtos;
|
|
}
|
|
}
|
|
/**
|
|
/**
|
|
* 获取配置
|
|
* 获取配置
|