|
@@ -1,19 +1,18 @@
|
|
|
package com.zcxk.controller;
|
|
|
|
|
|
+import com.google.common.collect.Sets;
|
|
|
+import com.zcxk.config.SnowflakeIdWorker;
|
|
|
import com.zcxk.dao.mysql.SendDao;
|
|
|
import com.zcxk.dao.sqlserver.ReceiveDao;
|
|
|
-import com.zcxk.entity.MeterDataEntity;
|
|
|
-import com.zcxk.entity.TaskEntity;
|
|
|
-import com.zcxk.entity.UploadWaterMeterDataEntity;
|
|
|
-import com.zcxk.entity.WaterMeterBaseEntity;
|
|
|
+import com.zcxk.entity.*;
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.HashMap;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
+import java.util.*;
|
|
|
|
|
|
@RestController
|
|
|
public class DemoController {
|
|
@@ -21,14 +20,72 @@ public class DemoController {
|
|
|
ReceiveDao receiveDao;
|
|
|
@Autowired
|
|
|
SendDao sendDao;
|
|
|
+ @Value("${customerId}")
|
|
|
+ Integer customerId;
|
|
|
+ @Value("${siteId}")
|
|
|
+ Integer siteId;
|
|
|
+ @Value("${sysId}")
|
|
|
+ Integer sysId;
|
|
|
+ @Value("${buildingId}")
|
|
|
+ Integer buildingId;
|
|
|
@GetMapping("/getBaseInfo")
|
|
|
public void countPlanDevice(Integer id){
|
|
|
|
|
|
WaterMeterBaseEntity waterMeterBaseEntity=new WaterMeterBaseEntity();
|
|
|
+ SnowflakeIdWorker idWorker = new SnowflakeIdWorker(0, 0);
|
|
|
waterMeterBaseEntity.setRegionId(id+"");
|
|
|
List<Map<String, Object>> meterInfor = receiveDao.getMeterInfor(waterMeterBaseEntity);
|
|
|
+ Map<String,Object>args=new HashMap<>();
|
|
|
+ args.put("customerId",customerId);
|
|
|
+ Set<String> hasDeviceNos = sendDao.selectDevice(args);
|
|
|
+ List<DeviceType> deviceTypes = sendDao.selectDeviceType();
|
|
|
+ Map<String,DeviceType>mapDeviceType=new HashMap<>();
|
|
|
+ deviceTypes.forEach(deviceType -> {
|
|
|
+ mapDeviceType.put(deviceType.getModel(),deviceType);
|
|
|
+ });
|
|
|
+
|
|
|
+ Set<String> allDeviceNos=new HashSet<>();
|
|
|
+ meterInfor.forEach(map->{
|
|
|
+ String deviceNo=(String) map.get("releationId");
|
|
|
+ allDeviceNos.add(StringUtils.lowerCase(deviceNo));
|
|
|
+ });
|
|
|
+ Sets.SetView<String> difference = Sets.difference(allDeviceNos, hasDeviceNos);
|
|
|
+ for (String temp : difference) {
|
|
|
+ System.out.println(temp);
|
|
|
+ }
|
|
|
+ List<Device>needAddWaterMeter=new ArrayList<>();
|
|
|
+ meterInfor.forEach(map->{
|
|
|
+ String deviceNo=(String) map.get("releationId");
|
|
|
+ if(difference.contains(deviceNo)){
|
|
|
+ Device device = new Device();
|
|
|
+ device.setId(idWorker.nextId());
|
|
|
+ device.setDeviceNo(StringUtils.lowerCase(deviceNo));
|
|
|
+ DeviceType deviceType = mapDeviceType.get(map.get("releationId"));
|
|
|
+ if(deviceType!=null){
|
|
|
+ device.setDeviceType(deviceType.getDeviceType() );
|
|
|
+ device.setManufacturerId(deviceType.getManufacturerId());
|
|
|
+ }
|
|
|
+ device.setSysId(sysId);
|
|
|
+ device.setSiteId(siteId);
|
|
|
+ device.setBuildingId(buildingId);
|
|
|
+ device.setLocDesc((String) map.get("address"));
|
|
|
+
|
|
|
+ device.setDeviceStatus(5+"");//未启用
|
|
|
+ device.setStatus(1);
|
|
|
+ device.setDateCreate(new Date());
|
|
|
+ device.setCreateBy("system");
|
|
|
+ device.setCustomerId(customerId);
|
|
|
+ device.setWaterMeterNo((String) map.get("meterNo"));
|
|
|
+ device.setRegisterStatus(0);
|
|
|
+ needAddWaterMeter.add(device);
|
|
|
+
|
|
|
+ }
|
|
|
+ });
|
|
|
+ if(needAddWaterMeter.size()>0){
|
|
|
+ sendDao.insertDeviceInfo(needAddWaterMeter);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
- System.out.println(meterInfor);
|
|
|
|
|
|
}
|
|
|
@GetMapping("/uploadData")
|
|
@@ -38,18 +95,33 @@ public class DemoController {
|
|
|
uploadPlan.forEach(map->{
|
|
|
TaskEntity taskEntity=new TaskEntity();
|
|
|
taskEntity.setPlanId((String) map.get("PlanId"));
|
|
|
+
|
|
|
receiveDao.creatUploadTask(taskEntity);
|
|
|
if(taskEntity.getReturnCode()==1){
|
|
|
|
|
|
|
|
|
try {
|
|
|
+ Map<String,Object>args=new HashMap<>();
|
|
|
|
|
|
List<MeterDataEntity>datas=new ArrayList<>();
|
|
|
- MeterDataEntity meterDataEntity=new MeterDataEntity();
|
|
|
- meterDataEntity.setReleationId("MT72CDB3A8842D51BF85D8F1CBFA7454");
|
|
|
- meterDataEntity.setCurrentReading(12.05f);
|
|
|
- meterDataEntity.setCurrentReadDate("2021-01-05 12:15:16");
|
|
|
- datas.add(meterDataEntity);
|
|
|
+ SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-dd-MM HH:mm:ss");
|
|
|
+ String uplaodTime= (String) map.get("UploadTime");
|
|
|
+ Date time=simpleDateFormat.parse(uplaodTime);
|
|
|
+ Date needUploadTime=new Date(time.getTime()-24*3600*1000);
|
|
|
+ SimpleDateFormat needUploadDateFormate=new SimpleDateFormat("yyyyddMM");
|
|
|
+ int needUploadTimeDate = Integer.parseInt(needUploadDateFormate.format(needUploadTime));
|
|
|
+ args.put("readDate",needUploadTimeDate);
|
|
|
+ args.put("customerId",customerId);
|
|
|
+ List<MeterReadRecord> meterReadRecords = sendDao.selectDeviceMeterReader(args);
|
|
|
+ meterReadRecords.forEach(meterReadRecord -> {
|
|
|
+ MeterDataEntity meterDataEntity=new MeterDataEntity();
|
|
|
+ meterDataEntity.setReleationId(meterReadRecord.getDeviceNo());
|
|
|
+ meterDataEntity.setCurrentReading(Float.parseFloat(meterReadRecord.getReadData()));
|
|
|
+ meterDataEntity.setCurrentReadDate(simpleDateFormat.format(meterReadRecord.getReadTime()));
|
|
|
+ datas.add(meterDataEntity);
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
UploadWaterMeterDataEntity uploadWaterMeterDataEntity=new UploadWaterMeterDataEntity();
|
|
|
uploadWaterMeterDataEntity.setTaskId(taskEntity.getTaskId());
|
|
|
uploadWaterMeterDataEntity.setMeterData(datas);
|
|
@@ -63,4 +135,18 @@ public class DemoController {
|
|
|
|
|
|
});
|
|
|
}
|
|
|
+ public static void main(String[] args) {
|
|
|
+ Set<String> sets = Sets.newHashSet("1","2");
|
|
|
+ Set<String > sets2 = Sets.newHashSet("1");
|
|
|
+ // 交集
|
|
|
+
|
|
|
+ // 差集
|
|
|
+ System.out.println("差集为:");
|
|
|
+ Sets.SetView<String> diff = Sets.difference(sets, sets2);
|
|
|
+ for (String temp : diff) {
|
|
|
+ System.out.println(temp);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|