Browse Source

Merge remote-tracking branch 'origin/develop' into develop

develop
wangsixiang 11 months ago
parent
commit
f53b7bce45
  1. 4
      zc-business/src/main/java/com/zc/business/controller/DcDeviceController.java
  2. 29
      zc-business/src/main/java/com/zc/business/controller/DcMeteorologicalDetectorController.java
  3. 4
      zc-business/src/main/java/com/zc/business/controller/DcOperLogController.java
  4. 118
      zc-business/src/main/java/com/zc/business/controller/DcRegionController.java
  5. 5
      zc-business/src/main/java/com/zc/business/domain/DcBatchFunctionsJob.java
  6. 10
      zc-business/src/main/java/com/zc/business/domain/DcMeteorologicalDetectorData.java
  7. 125
      zc-business/src/main/java/com/zc/business/interfaces/OperationLogAspect.java
  8. 13
      zc-business/src/main/java/com/zc/business/mapper/DcMeteorologicalDetectorDataMapper.java
  9. 19
      zc-business/src/main/java/com/zc/business/service/IDcMeteorologicalDetectorDataService.java
  10. 1
      zc-business/src/main/java/com/zc/business/service/impl/DcBatchFunctionsJobGroupServiceImpl.java
  11. 2
      zc-business/src/main/java/com/zc/business/service/impl/DcBatchFunctionsJobServiceImpl.java
  12. 35
      zc-business/src/main/java/com/zc/business/service/impl/DcMeteorologicalDetectorDataServiceImpl.java
  13. 1
      zc-business/src/main/java/com/zc/business/task/ScheduledTaskSchedulingTask.java
  14. 1
      zc-business/src/main/resources/mapper/business/DcBoardReleaseLogMapper.xml
  15. 142
      zc-business/src/main/resources/mapper/business/DcMeteorologicalDetectorDataMapper.xml

4
zc-business/src/main/java/com/zc/business/controller/DcDeviceController.java

@ -444,6 +444,7 @@ public class DcDeviceController extends BaseController {
@PathVariable String deviceId,
@PathVariable String functionId,
@RequestBody HashMap<String, Object> props) throws HttpException, IOException {
//public AjaxResult invokedFunction(@PathVariable String deviceId,@PathVariable String functionId,@RequestBody HashMap<String, Object> props,int operType) throws HttpException, IOException { todo
return getAjaxResult(deviceId, functionId, props);
@ -481,6 +482,7 @@ public class DcDeviceController extends BaseController {
@ApiOperation("批量设备功能调用")
@PostMapping("/batchFunctions")
@OperationLog(operUrl = "/business/device/batchFunctions")
//public AjaxResult batchInvokedFunction(@RequestBody Map<String, Object> props,int operType) throws HttpException, IOException, InterruptedException { todo
public AjaxResult batchInvokedFunction(@RequestBody Map<String, Object> props) throws HttpException, IOException, InterruptedException {
ArrayList<JSONObject> devices = (ArrayList<JSONObject>) props.get("devices");
ArrayList<JSONObject> functions = (ArrayList<JSONObject>) props.get("functions");
@ -501,7 +503,6 @@ public class DcDeviceController extends BaseController {
if (!Objects.equals(String.valueOf(ajaxResult.get("code")), "200")) {
return AjaxResult.error();
}
}
}
return AjaxResult.success(resultArray);
@ -614,6 +615,7 @@ public class DcDeviceController extends BaseController {
@OperationLog(operUrl = "/business/device/batchFunctions")
public AjaxResult batchInvokedFunction(Object object) throws HttpException, IOException, InterruptedException {
//public AjaxResult batchInvokedFunction(Object object,int operType) throws HttpException, IOException, InterruptedException { todo
Map<String, Object> map = new ObjectMapper().convertValue(object, Map.class);
return batchInvokedFunction(map);
}

29
zc-business/src/main/java/com/zc/business/controller/DcMeteorologicalDetectorController.java

@ -32,6 +32,13 @@ public class DcMeteorologicalDetectorController extends BaseController {
List<Map<String,String>> list = dcMeteorologicalDetectorDataService.selectStatistics(deviceName);
return getDataTable(list);
}
@ApiOperation("根据设备名称查询详细信息列表")
@GetMapping("/device/{deviceName}")
public TableDataInfo deviceNameList(@PathVariable("deviceName") String deviceName)
{
List<DcMeteorologicalDetectorData> list = dcMeteorologicalDetectorDataService.selectDeviceNameList(deviceName);
return getDataTable(list);
}
@ApiOperation("统计气象设备当天最新信息列表")
@GetMapping("/listLatest")
public TableDataInfo listAll(DcMeteorologicalDetectorData dcMeteorologicalDetectorData)
@ -46,5 +53,25 @@ public class DcMeteorologicalDetectorController extends BaseController {
List<DcMeteorologicalDetectorData> list = dcMeteorologicalDetectorDataService.selectlistVisibility(dcMeteorologicalDetectorData);
return getDataTable(list);
}
@ApiOperation("每小时统计气象设备信息列表")
@GetMapping("/deviceHour")
public TableDataInfo deviceHour(String deviceName,String specificDate)
{
List<Map<String,String>> list = dcMeteorologicalDetectorDataService.selectStatisticsTime(deviceName,specificDate);
return getDataTable(list);
}
@ApiOperation("按月统计每天气象设备信息列表")
@GetMapping("/deviceDay")
public TableDataInfo deviceDay(String deviceName,String specificDate)
{
List<Map<String,String>> list = dcMeteorologicalDetectorDataService.selectStatisticsDay(deviceName,specificDate);
return getDataTable(list);
}
@ApiOperation("按年统计每月气象设备信息列表")
@GetMapping("/deviceYears")
public TableDataInfo deviceYears(String deviceName,String specificDate)
{
List<Map<String,String>> list = dcMeteorologicalDetectorDataService.selectStatisticsYears(deviceName,specificDate);
return getDataTable(list);
}
}

4
zc-business/src/main/java/com/zc/business/controller/DcOperLogController.java

@ -40,7 +40,7 @@ public class DcOperLogController extends BaseController {
@ApiOperation("分页查询列表")
@PreAuthorize("@ss.hasPermi('iot:facility:list')")
@GetMapping("list")
public TableDataInfo listFacility(DcOperLog dcOperLog,@RequestParam(value = "endTime", required = false)Date endTime,@RequestParam(value = "startTime", required = false)Date startTime) {
public TableDataInfo listFacility( DcOperLog dcOperLog,@RequestParam(value = "endTime", required = false)Date endTime,@RequestParam(value = "startTime", required = false)Date startTime) {
return getDataTable(dcOperLogService.pageDcOperLog(dcOperLog,endTime,startTime));
}
@ -53,7 +53,7 @@ public class DcOperLogController extends BaseController {
@ApiOperation("无分页查询列表")
@PreAuthorize("@ss.hasPermi('iot:facility:query')")
@GetMapping("query")
public AjaxResult queryFacility(DcOperLog dcOperLog, @RequestParam(value = "endTime", required = false) Date endTime, @RequestParam(value = "startTime", required = false)Date startTime) {
public AjaxResult queryFacility( DcOperLog dcOperLog, @RequestParam(value = "endTime", required = false) Date endTime, @RequestParam(value = "startTime", required = false)Date startTime) {
return AjaxResult.success(dcOperLogService.listDcOperLog(dcOperLog,endTime,startTime));
}

118
zc-business/src/main/java/com/zc/business/controller/DcRegionController.java

@ -0,0 +1,118 @@
package com.zc.business.controller;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.common.enums.BusinessType;
import com.zc.business.domain.DcRegion;
import com.zc.business.service.impl.DcRegionServiceImpl;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import javax.validation.Valid;
import java.util.List;
/**
* 地区信息Controller
*
* @author zhaoxianglong
*/
@Api(tags = {"地区信息"})
@RestController
@RequestMapping("/business/region")
public class DcRegionController extends BaseController {
@Resource
private DcRegionServiceImpl dcRegionService;
//*********************************道路增删改查******************************************
/**
* 分页查询道路列表
*
* @param dcRegion 请求参数
* @return 分页查询结果
*/
@ApiOperation("分页查询道路列表")
@PreAuthorize("@ss.hasPermi('iot:road:list')")
@GetMapping("list")
public TableDataInfo listRoad(DcRegion dcRegion) {
return getDataTable(dcRegionService.list());
}
/**
* 无分页查询道路列表
*
* @param dcRegion 请求参数
* @return 查询结果
*/
@ApiOperation("无分页查询道路列表")
@PreAuthorize("@ss.hasPermi('iot:road:query')")
@GetMapping("query")
public AjaxResult queryRoad(DcRegion dcRegion) {
return AjaxResult.success(dcRegionService.list());
}
/**
* 根据id查询道路信息
*
* @param id id
* @return 查询结果
*/
@ApiOperation("根据id查询道路信息")
@PreAuthorize("@ss.hasPermi('iot:road:query')")
@GetMapping("{id}")
public AjaxResult getRoad(@PathVariable String id) {
return AjaxResult.success(dcRegionService.getById(id));
}
/**
* 新增
*
* @param dcRegion 新增参数
* @return 新增操作结果
*/
@ApiOperation("新增")
@PreAuthorize("@ss.hasPermi('iot:road:add')")
@Log(title = "新增道路", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult addRoad(@Valid @RequestBody DcRegion dcRegion) {
return toAjax(dcRegionService.save(dcRegion));
}
/**
* 修改
*
* @param dcRegion 修改参数
* @return 修改操作结果
*/
@ApiOperation("修改")
@PreAuthorize("@ss.hasPermi('iot:road:edit')")
@Log(title = "修改道路", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult editRoad(@Valid @RequestBody DcRegion dcRegion) {
LambdaQueryWrapper<DcRegion> lambdaQueryWrapper = new LambdaQueryWrapper<>();
lambdaQueryWrapper.eq(DcRegion::getId,dcRegion.getId());
return toAjax(dcRegionService.update(dcRegion,lambdaQueryWrapper));
}
/**
* 删除
*
* @param ids id集
* @return 删除操作结果
*/
@ApiOperation("删除")
@PreAuthorize("@ss.hasPermi('iot:road:remove')")
@Log(title = "删除", businessType = BusinessType.DELETE)
@DeleteMapping("{ids}")
public AjaxResult removeRoad(@PathVariable List<String> ids) {
return toAjax(dcRegionService.removeByIds(ids));
}
}

5
zc-business/src/main/java/com/zc/business/domain/DcBatchFunctionsJob.java

@ -1,6 +1,7 @@
package com.zc.business.domain;
import com.baomidou.mybatisplus.annotation.TableField;
import com.ruoyi.common.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@ -15,8 +16,8 @@ public class DcBatchFunctionsJob {
private Long jobId;
@ApiModelProperty("任务组ID")
private String jobGroup;
//@Excel(name = "任务名称")
@TableField(exist = false)
@Excel(name = "任务名称")
//@TableField(exist = false)
private String jobName;
@ApiModelProperty("调用目标字符串")
private String invokeTarget;

10
zc-business/src/main/java/com/zc/business/domain/DcMeteorologicalDetectorData.java

@ -125,6 +125,16 @@ public class DcMeteorologicalDetectorData extends BaseEntity
@TableField(exist = false)
private String stakeMarkRange;
@ApiModelProperty("安装位置")
@TableField(exist = false)
private String installationSite;
@ApiModelProperty("其他配置")//USRegal
@TableField(exist = false)
private String otherConfig;
@ApiModelProperty("所属网段")//USRegal
@TableField(exist = false)
private String networkSegment;
// "rainfall": 0,
// "visibility": "05.000",
// "remoteRoadSurfaceTemperature": 11.5,

125
zc-business/src/main/java/com/zc/business/interfaces/OperationLogAspect.java

@ -121,6 +121,11 @@ public class OperationLogAspect {
}
Object[] pointArgs = joinPoint.getArgs();
//String operType = String.valueOf(pointArgs[pointArgs.length - 1]);
//operLog.setOperType(operType);
HttpServletRequest request;
try {
@ -129,34 +134,13 @@ public class OperationLogAspect {
request = null;
}
AjaxResult proceed = (AjaxResult) joinPoint.proceed(pointArgs);
//String jsonResultString = "";
//JSONArray jsonArray = (JSONArray) proceed;
//for (Object o : jsonArray) {
// JSONObject jsonObject = (JSONObject) o;
// if (Objects.equals(jsonObject.getString("code"), "200")) {
// JSONArray data = jsonObject.getJSONArray("data");
// for (Object datum : data) {
// JSONObject results = (JSONObject) datum;
// JSONObject result = results.getJSONObject("result");
// if (Objects.equals(result.getString("code"), "200")) {
// jsonResultString = "设备"+d+"";
// }
// }
// }
//}
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String date = df.format(new Date());
String sta = "";
if (Objects.equals(state, "0")&&Objects.equals(String.valueOf(proceed.get("code")), "200")) {
//if (Objects.equals(String.valueOf(proceed.get("code")), "200")) {
operLog.setStatus(0);
sta = "成功";
//} else {
// operLog.setStatus(1);
// sta = "失败";
//}
if (Objects.equals(state, "0") && Objects.equals(String.valueOf(((AjaxResult) jsonResult).get("code")), "200")) {
operLog.setStatus(0);
sta = "成功";
} else {
operLog.setStatus(1);
sta = "失败";
@ -164,26 +148,18 @@ public class OperationLogAspect {
ArrayList<String> deviceIds = new ArrayList<>();
ArrayList<String> deviceNames = new ArrayList<>();
//ArrayList<String> functionIds = new ArrayList<>();
String deviceType = "";
StringBuilder remark = new StringBuilder("在" + date + "调用");
if (operUrl.contains("batchFunctions")) {
//批量调用
JSONObject pointArg = null;
if (pointArgs[0] instanceof JSONObject) {
pointArg = (JSONObject) pointArgs[0];
} else {
pointArg = (JSONObject) JSON.toJSON(pointArgs[0]);
}
//if (loginUser != null) {
// SysDept sysDept = deptService.selectDeptById(loginUser.getDeptId());
//
// dcOperLog.setOperName(loginUser.getUsername());
// dcOperLog.setDeptName(sysDept.getDeptName());
// dcOperLog.setOperLocation(loginUser.getLoginLocation());
// dcOperLog.setOperType("2");
//} else {
// dcOperLog.setOperType("1");
//}
//dcOperLog.setOperIp(IpUtils.getIpAddr(request));
//dcOperLog.setOperTime(new Date());
JSONObject pointArg = (JSONObject) pointArgs[0];
JSONArray devices = pointArg.getJSONArray("devices");
JSONArray functions = pointArg.getJSONArray("functions");
@ -230,7 +206,6 @@ public class OperationLogAspect {
}
}
if (loginUser != null) {
SysDept sysDept = deptService.selectDeptById(loginUser.getDeptId());
@ -241,21 +216,26 @@ public class OperationLogAspect {
} else {
operLog.setOperType("1");
}
operLog.setOperParam((Arrays.toString(pointArgs)));
JSONArray jsonArray = (JSONArray) JSON.toJSON(pointArgs);
operLog.setOperParam(String.valueOf(jsonArray));
operLog.setDcDeviceId(deviceIds.toString());
operLog.setDcDeviceName(deviceNames.toString());
operLog.setOperIp(IpUtils.getIpAddr(request));
operLog.setOperTime(new Date());
operLog.setDcDeviceType(deviceType);
operLog.setRemark(remark.toString());
operLog.setJsonResult(String.valueOf(proceed));
operLog.setJsonResult(jsonResult.toString());
dcOperLogService.addDcOperLog(operLog);
} else if (operUrl.contains("functions")) {
LambdaQueryWrapper<DcDevice> lambdaQueryWrapper = new LambdaQueryWrapper<>();
lambdaQueryWrapper.eq(DcDevice::getIotDeviceId, pointArgs[0]);
DcDevice dcDevice = dcDeviceService.getById(Long.valueOf(String.valueOf(pointArgs[0])));
List<DcDevice> list = dcDeviceService.list(lambdaQueryWrapper);
DcDevice dcDevice = list.get(0);
if (!Objects.isNull(dcDevice)) {
Long deviceId = dcDevice.getId();
@ -271,17 +251,19 @@ public class OperationLogAspect {
remark.append(deviceName).append("的").append(hashMap).append("功能并且调用").append(sta).append("了");
if (loginUser != null) {
SysDept sysDept = deptService.selectDeptById(loginUser.getDeptId());
operLog.setOperName(loginUser.getUsername());
operLog.setDeptName(sysDept.getDeptName());
operLog.setOperLocation(loginUser.getLoginLocation());
operLog.setOperType("2");
operLog.setOperType("0");
} else {
operLog.setOperType("1");
}
operLog.setOperParam((Arrays.toString(pointArgs)));
JSONArray jsonArray = (JSONArray) JSON.toJSON(pointArgs);
operLog.setOperParam(String.valueOf(jsonArray));
operLog.setDcDeviceId(deviceIds.toString());
operLog.setDcDeviceName(deviceNames.toString());
operLog.setOperIp(IpUtils.getIpAddr(request));
@ -290,55 +272,6 @@ public class OperationLogAspect {
operLog.setJsonResult(remark.toString());
dcOperLogService.addDcOperLog(operLog);
//
////DcDevice dcDevice = list.get(0);
//operLog.setDcDeviceId(String.valueOf(dcDevice.getId()));
//operLog.setDcDeviceName(dcDevice.getDeviceName());
//deviceType = dcDevice.getDeviceType();
//operLog.setDcDeviceType(deviceType);
//if (loginUser != null) {
// SysDept sysDept = deptService.selectDeptById(loginUser.getDeptId());
//
// dcOperLog.setOperName(loginUser.getUsername());
// dcOperLog.setDeptName(sysDept.getDeptName());
// dcOperLog.setOperLocation(loginUser.getLoginLocation());
// dcOperLog.setOperType("0");
//} else {
// dcOperLog.setOperType("1");
//}
//dcOperLog.setOperIp(IpUtils.getIpAddr(request));
//dcOperLog.setOperParam(Arrays.toString(pointArgs));
//dcOperLog.setJsonResult("设备" + dcDevice.getDeviceName() + "在" + date + "调用了" + hashMap + "功能并且调用" + sta + "了");
////dcOperLog.setJsonResult(dcDevice.getDeviceName() + "设备在" + date + "调用" + sta + "ID为" + dcDevice.getId() + "的设备功能标识为" + pointArgs[1].toString() + "的方法");
//dcOperLog.setOperTime(new Date());
//dcOperLogService.addDcOperLog(dcOperLog);
//
//
//String remark = "设备在" + date + "调用" + sta + "ID为" + deviceIds + "的设备功能标识为" + functionIds + "的方法";
//System.out.println(remark);
//System.out.println(deviceIds.toString());
//System.out.println(functionIds.toString());
//DcOperLog operLog = new DcOperLog();
//SysDept sysDept = deptService.selectDeptById(loginUser.getDeptId());
//operLog.setOperParam((Arrays.toString(pointArgs)));
//operLog.setOperLocation(loginUser.getLoginLocation());
//operLog.setOperName(loginUser.getUsername());
//operLog.setDeptName(sysDept.getDeptName());
//operLog.setDcDeviceId(deviceIds.toString());
//operLog.setOperType("2");
//operLog.setOperIp(IpUtils.getIpAddr(request));
//operLog.setOperTime(new Date());
//operLog.setDcDeviceType(deviceType);
//operLog.setJsonResult(remark);
//if (Objects.equals(state, "0")) {
// operLog.setStatus(0);
//} else {
// operLog.setStatus(1);
//}
//dcOperLogService.addDcOperLog(operLog);
}
}

13
zc-business/src/main/java/com/zc/business/mapper/DcMeteorologicalDetectorDataMapper.java

@ -5,6 +5,7 @@ import java.util.Map;
import com.zc.business.domain.DcMeteorologicalDetectorData;
import com.zc.business.domain.MdDeviceData;
import org.apache.ibatis.annotations.Param;
/**
* 气象检测器数据Mapper接口
@ -63,8 +64,20 @@ public interface DcMeteorologicalDetectorDataMapper
int deleteDcMeteorologicalDetectorDataByIds(Long[] ids);
//统计
List<Map<String, String>> selectStatistics(String deviceName);
List<Map<String, String>> selectStatisticsTime(@Param("deviceName") String deviceName ,@Param("specificDate") String specificDate);
List<DcMeteorologicalDetectorData> selectlistAll(DcMeteorologicalDetectorData dcMeteorologicalDetectorData);
List<DcMeteorologicalDetectorData> selectlistVisibility(DcMeteorologicalDetectorData dcMeteorologicalDetectorData);
/**
* 根据设备名称查询详细信息列表
* @param deviceName
* @return
*/
List<DcMeteorologicalDetectorData> selectDeviceNameList(String deviceName);
List<Map<String, String>> selectStatisticsDay(@Param("deviceName") String deviceName,@Param("specificDate") String specificDate);
List<Map<String, String>> selectStatisticsYears(@Param("deviceName") String deviceName,@Param("specificDate") String specificDate);
}

19
zc-business/src/main/java/com/zc/business/service/IDcMeteorologicalDetectorDataService.java

@ -64,7 +64,26 @@ public interface IDcMeteorologicalDetectorDataService
//统计当天 没小时温度
List<Map<String,String>> selectStatistics(String deviceName);
/**
* 按时间统计气象设备信息列表
* @param deviceName
* @param specificDate
* @return
*/
List<Map<String,String>> selectStatisticsTime(String deviceName,String specificDate);
List<DcMeteorologicalDetectorData> selectlistAll(DcMeteorologicalDetectorData dcMeteorologicalDetectorData);
List<DcMeteorologicalDetectorData> selectlistVisibility(DcMeteorologicalDetectorData dcMeteorologicalDetectorData);
/**
* 根据设备名称查询详细信息列表
* @param deviceName
* @return
*/
List<DcMeteorologicalDetectorData> selectDeviceNameList(String deviceName);
List<Map<String, String>> selectStatisticsDay(String deviceName, String specificDate);
List<Map<String, String>> selectStatisticsYears(String deviceName, String specificDate);
}

1
zc-business/src/main/java/com/zc/business/service/impl/DcBatchFunctionsJobGroupServiceImpl.java

@ -113,6 +113,7 @@ public class DcBatchFunctionsJobGroupServiceImpl extends ServiceImpl<DcBatchFunc
dcBatchFunctionsJob.setJobGroup(String.valueOf(dcBatchFunctionsJobGroup.getId()));
List<DcBatchFunctionsJob> dcBatchFunctionsJobs = dcBatchFunctionsJobService.listDcBatchFunctionsJob(dcBatchFunctionsJob);
for (DcBatchFunctionsJob batchFunctionsJob : dcBatchFunctionsJobs) {
batchFunctionsJob.setJobName(dcBatchFunctionsJobGroup.getGroupName());
boolean changeStatus = dcBatchFunctionsJobService.changeStatus(batchFunctionsJob, dcBatchFunctionsJobGroup.getStatus());
if (!changeStatus) {
return false;

2
zc-business/src/main/java/com/zc/business/service/impl/DcBatchFunctionsJobServiceImpl.java

@ -62,6 +62,7 @@ public class DcBatchFunctionsJobServiceImpl extends ServiceImpl<DcBatchFunctions
if (Objects.equals(String.valueOf(job.getJobId()), String.valueOf(task))) {
job.setCronExpression(cron);
job.setStatus(dcBatchFunctionsJobGroup.getStatus());
job.setJobName(dcBatchFunctionsJobGroup.getGroupName());
ScheduleUtils.createScheduleJob(scheduler, job);
}
}
@ -77,7 +78,6 @@ public class DcBatchFunctionsJobServiceImpl extends ServiceImpl<DcBatchFunctions
String time = dcBatchFunctionsJob.getTime();
if (time == null) {
return null;
}
List<Object> detaileds = detailedConfigurations.stream().filter(detailed ->
Objects.equals((String) ((JSONObject) detailed).get("time"), time)

35
zc-business/src/main/java/com/zc/business/service/impl/DcMeteorologicalDetectorDataServiceImpl.java

@ -105,6 +105,15 @@ public class DcMeteorologicalDetectorDataServiceImpl implements IDcMeteorologica
public List<Map<String,String>> selectStatistics(String deviceName) {
return dcMeteorologicalDetectorDataMapper.selectStatistics(deviceName);
}
/**
* 按时间统计气象设备信息列表
* @param deviceName
* @param specificDate
* @return
*/
public List<Map<String,String>> selectStatisticsTime(String deviceName,String specificDate) {
return dcMeteorologicalDetectorDataMapper.selectStatisticsTime(deviceName,specificDate);
}
@Override
public List<DcMeteorologicalDetectorData> selectlistAll(DcMeteorologicalDetectorData dcMeteorologicalDetectorData) {
@ -115,4 +124,30 @@ public class DcMeteorologicalDetectorDataServiceImpl implements IDcMeteorologica
public List<DcMeteorologicalDetectorData> selectlistVisibility(DcMeteorologicalDetectorData dcMeteorologicalDetectorData) {
return dcMeteorologicalDetectorDataMapper.selectlistVisibility(dcMeteorologicalDetectorData);
}
/**
* 根据设备名称查询详细信息列表
* @param deviceName
* @return
*/
@Override
public List<DcMeteorologicalDetectorData> selectDeviceNameList(String deviceName) {
return dcMeteorologicalDetectorDataMapper.selectDeviceNameList(deviceName);
}
@Override
public List<Map<String, String>> selectStatisticsDay(String deviceName, String specificDate) {
if (specificDate==null || specificDate.equals("")){
specificDate=DateUtils.getDate();
}
return dcMeteorologicalDetectorDataMapper.selectStatisticsDay(deviceName,specificDate);
}
@Override
public List<Map<String, String>> selectStatisticsYears(String deviceName, String specificDate) {
if (specificDate==null || specificDate.equals("")){
specificDate=DateUtils.getDate();
}
return dcMeteorologicalDetectorDataMapper.selectStatisticsYears(deviceName,specificDate);
}
}

1
zc-business/src/main/java/com/zc/business/task/ScheduledTaskSchedulingTask.java

@ -29,6 +29,7 @@ public class ScheduledTaskSchedulingTask {
JSONArray jsonArray = JSONArray.parseArray(job.getCallParameter());
for (Object o : jsonArray) {
deviceController.batchInvokedFunction(o);
//deviceController.batchInvokedFunction(o,1); todo
}
}
}

1
zc-business/src/main/resources/mapper/business/DcBoardReleaseLogMapper.xml

@ -32,6 +32,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<include refid="selectDcBoardReleaseLogVo"/>
<where>
<if test="deviceId != null and deviceId != ''"> and t1.device_id = #{deviceId}</if>
<if test="direction != null and direction != ''"> and t2.direction = #{direction}</if>
<if test="deviceName != null and deviceName != ''"> and t2.device_name like concat('%', #{deviceName}, '%')</if>
<if test="releaseContent != null and releaseContent != ''"> and t1.release_content = #{releaseContent}</if>
<if test="releaseStatus != null and releaseStatus != ''"> and t1.release_status = #{releaseStatus}</if>

142
zc-business/src/main/resources/mapper/business/DcMeteorologicalDetectorDataMapper.xml

@ -26,12 +26,18 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="direction" column="direction" />
<result property="deviceState" column="device_state" />
<result property="stakeMarkRange" column="stake_mark_range" />
<result property="remark" column="remark" />
<result property="otherConfig" column="other_config" />
<result property="installationSite" column="installation_site" />
<result property="installationSite" column="installation_site" />
<result property="networkSegment" column="network_segment" />
</resultMap>
<resultMap type="map" id="countMap">
<result property="timeSlot" column="time_slot" />
<result property="date" column="date" />
<result property="avgTemperature" column="avg_temperature" />
<result property="avgVisibility" column="avg_visibility" />
<result property="month" column="month" />
</resultMap>
<sql id="selectDcMeteorologicalDetectorDataVo">
select id, iot_device_id, rainfall, visibility_type, visibility, atmospheric_pressure, temperature, humidity, wind_direction, wind_speed, precipitation_type, wet_slippery_coefficient,remote_road_surface_temperature, remote_road_surface_status, water_film_ice_snow_value,create_time,stake_mark,device_name,direction from dc_meteorological_detector_data
@ -151,23 +157,54 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
COALESCE(ROUND(AVG(dc.visibility), 2), 0) AS avg_visibility
FROM
(
SELECT 0 AS time_slot UNION ALL SELECT 1 UNION ALL SELECT 2 UNION ALL SELECT 3 UNION ALL SELECT 4
UNION ALL SELECT 5 UNION ALL SELECT 6 UNION ALL SELECT 7 UNION ALL SELECT 8 UNION ALL SELECT 9
UNION ALL SELECT 10 UNION ALL SELECT 11 UNION ALL SELECT 12 UNION ALL SELECT 13
UNION ALL SELECT 14 UNION ALL SELECT 15 UNION ALL SELECT 16 UNION ALL SELECT 17
UNION ALL SELECT 18 UNION ALL SELECT 19 UNION ALL SELECT 20 UNION ALL SELECT 21
UNION ALL SELECT 22 UNION ALL SELECT 23
SELECT 0 AS time_slot UNION ALL SELECT 1 UNION ALL SELECT 2 UNION ALL SELECT 3 UNION ALL SELECT 4
UNION ALL SELECT 5 UNION ALL SELECT 6 UNION ALL SELECT 7 UNION ALL SELECT 8 UNION ALL SELECT 9
UNION ALL SELECT 10 UNION ALL SELECT 11 UNION ALL SELECT 12 UNION ALL SELECT 13
UNION ALL SELECT 14 UNION ALL SELECT 15 UNION ALL SELECT 16 UNION ALL SELECT 17
UNION ALL SELECT 18 UNION ALL SELECT 19 UNION ALL SELECT 20 UNION ALL SELECT 21
UNION ALL SELECT 22 UNION ALL SELECT 23
) AS h
LEFT JOIN
LEFT JOIN
dc_meteorological_detector_data dc
ON
DATE(dc.create_time) = CURDATE()
AND HOUR(dc.create_time) = h.time_slot
AND dc.device_name = #{deviceName}
ON
DATE(dc.create_time) = CURDATE()
AND HOUR(dc.create_time) = h.time_slot
AND dc.device_name = #{deviceName}
GROUP BY
h.time_slot,
date;
</select>
<select id="selectStatisticsTime" resultMap="countMap" resultType="map">
SELECT
h.time_slot,
DATE(dc.create_time) AS date,
COALESCE(ROUND(AVG(dc.temperature), 2), 0) AS avg_temperature,
COALESCE(ROUND(AVG(dc.visibility), 2), 0) AS avg_visibility
FROM
(
SELECT 0 AS time_slot UNION ALL SELECT 1 UNION ALL SELECT 2 UNION ALL SELECT 3 UNION ALL SELECT 4
UNION ALL SELECT 5 UNION ALL SELECT 6 UNION ALL SELECT 7 UNION ALL SELECT 8 UNION ALL SELECT 9
UNION ALL SELECT 10 UNION ALL SELECT 11 UNION ALL SELECT 12 UNION ALL SELECT 13
UNION ALL SELECT 14 UNION ALL SELECT 15 UNION ALL SELECT 16 UNION ALL SELECT 17
UNION ALL SELECT 18 UNION ALL SELECT 19 UNION ALL SELECT 20 UNION ALL SELECT 21
UNION ALL SELECT 22 UNION ALL SELECT 23
) AS h
LEFT JOIN
dc_meteorological_detector_data dc
ON
<if test="specificDate != null and specificDate !=''">
DATE(dc.create_time) = #{specificDate}
</if>
<if test="specificDate == null or specificDate=='' ">
DATE(dc.create_time) = CURDATE()
</if>
AND HOUR(dc.create_time) = h.time_slot
AND dc.device_name = #{deviceName}
GROUP BY
h.time_slot,
date;
</select>
<select id="selectlistAll" parameterType="com.zc.business.domain.DcMeteorologicalDetectorData" resultMap="DcMeteorologicalDetectorDataResult">
SELECT
@ -193,6 +230,30 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
d.device_type = 3
ORDER BY d.stake_mark ASC;
</select>
<select id="selectDeviceNameList" parameterType="com.zc.business.domain.DcMeteorologicalDetectorData" resultMap="DcMeteorologicalDetectorDataResult">
SELECT
d.iot_device_id, d.stake_mark, d.direction, d.device_name, d.device_state,d.network_segment,d.installation_site,d.other_config,d.remark,d.stake_mark_range,
m.create_time,
m.rainfall, m.visibility_type, m.visibility, m.atmospheric_pressure,
m.temperature, m.humidity, m.wind_direction, m.wind_speed,
m.precipitation_type, m.wet_slippery_coefficient,
m.remote_road_surface_temperature, m.remote_road_surface_status,
m.water_film_ice_snow_value
FROM
dc_device d
LEFT JOIN
dc_meteorological_detector_data m
ON
d.iot_device_id = m.iot_device_id
AND m.create_time = (
SELECT MAX(create_time)
FROM dc_meteorological_detector_data m2
WHERE m2.iot_device_id = d.iot_device_id
)
WHERE
d.device_type = 3 AND d.device_name = #{deviceName}
ORDER BY d.stake_mark ASC;
</select>
<select id="selectlistVisibility" parameterType="com.zc.business.domain.DcMeteorologicalDetectorData" resultMap="DcMeteorologicalDetectorDataResult">
SELECT
@ -226,4 +287,63 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
AND DATE(m.create_time) = CURDATE()
</where>
</select>
<select id="selectStatisticsDay" resultMap="countMap" resultType="map">
WITH RECURSIVE dates_in_month AS (
SELECT DATE_FORMAT(STR_TO_DATE(#{specificDate}, '%Y-%m-%d'), '%Y-%m-01') AS date
UNION ALL
SELECT DATE_ADD(date, INTERVAL 1 DAY)
FROM dates_in_month
<where>
date &lt; LAST_DAY(#{specificDate})
</where>
)
SELECT
d.date,
COALESCE(ROUND(AVG(dc.temperature), 2), 0) AS avg_temperature,
COALESCE(ROUND(AVG(dc.visibility), 2), 0) AS avg_visibility
FROM
dates_in_month d
LEFT JOIN
dc_meteorological_detector_data dc
ON
DATE(dc.create_time) = d.date
AND dc.device_name = #{deviceName}
GROUP BY
d.date
ORDER BY
d.date ASC;
</select>
<select id="selectStatisticsYears" resultMap="countMap" resultType="map">
WITH RECURSIVE months_of_year AS (
SELECT 1 AS month
UNION ALL
SELECT month + 1
FROM months_of_year
<where>
month &lt; 12
</where>
),
monthly_data AS (
SELECT
DATE_FORMAT(CONCAT(YEAR(#{specificDate}), '-', LPAD(month, 2, '0'), '-01'), '%Y-%m') AS month,
ROUND(AVG(COALESCE(dc.temperature, 0)), 2) AS avg_temperature,
ROUND(AVG(COALESCE(dc.visibility, 0)), 2) AS avg_visibility
FROM
months_of_year
LEFT JOIN dc_meteorological_detector_data dc
ON YEAR(dc.create_time) = YEAR(#{specificDate})
AND MONTH(dc.create_time) = months_of_year.month
AND dc.device_name = #{deviceName}
GROUP BY
month
)
SELECT * FROM monthly_data order by monthly_data.month asc ;
</select>
</mapper>
Loading…
Cancel
Save