|
@@ -7,8 +7,14 @@ import cn.hutool.poi.excel.ExcelReader;
|
|
|
import cn.hutool.poi.excel.ExcelUtil;
|
|
|
import com.alibaba.fastjson2.JSON;
|
|
|
import com.alibaba.fastjson2.JSONArray;
|
|
|
+import com.slibra.business.domain.TXinyiDaily;
|
|
|
import com.slibra.business.domain.TXinyiIndustry;
|
|
|
+import com.slibra.business.domain.TXinyiLaboratory;
|
|
|
+import com.slibra.business.domain.TXinyiRobot;
|
|
|
+import com.slibra.business.mapper.TXinyiDailyMapper;
|
|
|
import com.slibra.business.mapper.TXinyiIndustryMapper;
|
|
|
+import com.slibra.business.mapper.TXinyiLaboratoryMapper;
|
|
|
+import com.slibra.business.mapper.TXinyiRobotMapper;
|
|
|
import com.slibra.common.core.controller.BaseController;
|
|
|
import com.slibra.common.utils.DateUtils;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
@@ -35,6 +41,15 @@ public class HandleDataController extends BaseController
|
|
|
@Autowired
|
|
|
private TXinyiIndustryMapper xinyiIndustryMapper;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private TXinyiDailyMapper xinyiDailyMapper;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TXinyiLaboratoryMapper xinyiLaboratoryMapper;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TXinyiRobotMapper xinyiRobotMapper;
|
|
|
+
|
|
|
// public static final String[] queryTags = {"信义污水厂JS_COD_Value","信义污水厂JS_PH_Value","信义污水厂JS_SS_Value","信义污水厂JS_ZL_Value","信义污水厂JS_ZA_Value","信义污水厂JS_AD_Value","信义污水厂JS_T_Value","信义污水厂进水泵房液位","信义污水厂出水瞬时流量","信义污水厂升级出水COD","信义污水厂升级出水PH","信义污水厂升级出水SS","信义污水厂升级出水TN","信义污水厂升级出水TP","信义污水厂升级出水氨氮","信义污水厂AIT202_Value","信义污水厂AIT203_Value","信义污水厂AIT207_Value","信义污水厂AIT206_Value","信义污水厂AIT209_Value","信义污水厂AIT210_Value","信义污水厂进水TDS","信义污水厂FT101_Value","信义污水厂SWCHHYHLB1_R_Value","信义污水厂SWCHHYHLB2_R_Value","信义污水厂SWCHHYHLB3_R_Value","信义污水厂SWCHHYHLB4_R_Value","信义污水厂SWCHHYHLB5_R_Value","信义污水厂SWCHHYHLB6_R_Value","信义污水厂SWCWNHLB1_R_Value","信义污水厂SWCWNHLB2_R_Value","信义污水厂SWCWNHLB3_R_Value","信义污水厂SWCWNHLB4_R_Value","信义污水厂SWCWNHLB5_R_Value","信义污水厂GFJ1_R_Value","信义污水厂GFJ2_R_Value","信义污水厂GFJ3_R_Value","信义污水厂GFJ4_R_Value","信义污水厂GFJ5_R_Value","信义污水厂GFJ6_R_Value","信义污水厂GFJ1_KQLL_Value","信义污水厂GFJ2_KQLL_Value","信义污水厂GFJ3_KQLL_Value","信义污水厂GFJ4_KQLL_Value","信义污水厂GFJ5_KQLL_Value","信义污水厂GFJ6_KQLL_Value"};
|
|
|
|
|
|
// @GetMapping("/dateAdd")
|
|
@@ -393,44 +408,94 @@ public class HandleDataController extends BaseController
|
|
|
|
|
|
|
|
|
|
|
|
- @GetMapping("/dateUpdateSJTYMinute")
|
|
|
- public String dateUpdateSJTYMinute() {
|
|
|
- log.info("进入了手动处理两个值的操作~~~~~~~~");
|
|
|
- File file = new File("/home/slibra/历史数据");
|
|
|
- if(file.isDirectory()){
|
|
|
- for (File listFile : file.listFiles()) {
|
|
|
- // 输入目录
|
|
|
- ExcelReader reader = ExcelUtil.getReader(listFile);
|
|
|
- List<List<Object>> readAll = reader.read();
|
|
|
- if(!CollectionUtils.isEmpty(readAll)){
|
|
|
- for (int i = 3; i < readAll.size(); i++) {
|
|
|
- //解析数据
|
|
|
- List<Object> objects = readAll.get(i);
|
|
|
- String time = "20" + objects.get(0).toString().replaceAll(" ", "") + " " + objects.get(1).toString().replaceAll(" ", "").substring(0, 5);
|
|
|
-// System.out.println("time = " + time);
|
|
|
- TXinyiIndustry uniqueTXinyiIndustry = this.xinyiIndustryMapper.getUniqueTXinyiIndustry(time);
|
|
|
- if(!Objects.isNull(uniqueTXinyiIndustry)){
|
|
|
- TXinyiIndustry updateBean = new TXinyiIndustry();
|
|
|
- updateBean.setID(uniqueTXinyiIndustry.getID());
|
|
|
- BigDecimal CLJYSSLL = Objects.isNull(objects.get(2)) || String.valueOf(objects.get(2)).contains("-") ? null : new BigDecimal(String.valueOf(objects.get(2)));
|
|
|
- updateBean.setCLJYSSLL(CLJYSSLL);
|
|
|
- BigDecimal SJTYJLY = Objects.isNull(objects.get(3)) || String.valueOf(objects.get(3)).contains("-") ? null : new BigDecimal(String.valueOf(objects.get(3)));
|
|
|
- updateBean.setSJTYJLY(SJTYJLY);
|
|
|
- //如果两个都不为空再更新
|
|
|
- if(!Objects.isNull(CLJYSSLL) || !Objects.isNull(SJTYJLY)){
|
|
|
- this.xinyiIndustryMapper.updateTXinyiIndustry(updateBean);
|
|
|
- }else{
|
|
|
- log.error("要更新的两个字段全部为空--------");
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+// @GetMapping("/dateUpdateSJTYMinute")
|
|
|
+// public String dateUpdateSJTYMinute() {
|
|
|
+// log.info("进入了手动处理两个值的操作~~~~~~~~");
|
|
|
+// File file = new File("/home/slibra/历史数据");
|
|
|
+// if(file.isDirectory()){
|
|
|
+// for (File listFile : file.listFiles()) {
|
|
|
+// // 输入目录
|
|
|
+// ExcelReader reader = ExcelUtil.getReader(listFile);
|
|
|
+// List<List<Object>> readAll = reader.read();
|
|
|
+// if(!CollectionUtils.isEmpty(readAll)){
|
|
|
+// for (int i = 3; i < readAll.size(); i++) {
|
|
|
+// //解析数据
|
|
|
+// List<Object> objects = readAll.get(i);
|
|
|
+// String time = "20" + objects.get(0).toString().replaceAll(" ", "") + " " + objects.get(1).toString().replaceAll(" ", "").substring(0, 5);
|
|
|
+//// System.out.println("time = " + time);
|
|
|
+// TXinyiIndustry uniqueTXinyiIndustry = this.xinyiIndustryMapper.getUniqueTXinyiIndustry(time);
|
|
|
+// if(!Objects.isNull(uniqueTXinyiIndustry)){
|
|
|
+// TXinyiIndustry updateBean = new TXinyiIndustry();
|
|
|
+// updateBean.setID(uniqueTXinyiIndustry.getID());
|
|
|
+// BigDecimal CLJYSSLL = Objects.isNull(objects.get(2)) || String.valueOf(objects.get(2)).contains("-") ? null : new BigDecimal(String.valueOf(objects.get(2)));
|
|
|
+// updateBean.setCLJYSSLL(CLJYSSLL);
|
|
|
+// BigDecimal SJTYJLY = Objects.isNull(objects.get(3)) || String.valueOf(objects.get(3)).contains("-") ? null : new BigDecimal(String.valueOf(objects.get(3)));
|
|
|
+// updateBean.setSJTYJLY(SJTYJLY);
|
|
|
+// //如果两个都不为空再更新
|
|
|
+// if(!Objects.isNull(CLJYSSLL) || !Objects.isNull(SJTYJLY)){
|
|
|
+// this.xinyiIndustryMapper.updateTXinyiIndustry(updateBean);
|
|
|
+// }else{
|
|
|
+// log.error("要更新的两个字段全部为空--------");
|
|
|
+// }
|
|
|
+// }
|
|
|
+// }
|
|
|
+// }
|
|
|
+// }
|
|
|
+// }
|
|
|
+// return "ok";
|
|
|
+// }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 手动处理日报数据 增加两个字段 时间和小时
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping("/dateUpdateDaily")
|
|
|
+ public String dateUpdateDaily() {
|
|
|
+ //获取全部数据
|
|
|
+ List<TXinyiDaily> tXinyiDailies = this.xinyiDailyMapper.selectTXinyiDailyList(null);
|
|
|
+ if(!CollectionUtils.isEmpty(tXinyiDailies)){
|
|
|
+ for (TXinyiDaily tXinyiDaily : tXinyiDailies) {
|
|
|
+ String handleTime = handleDate(tXinyiDaily.getTestTime());
|
|
|
+ tXinyiDaily.setTestTime(handleTime);
|
|
|
+ tXinyiDaily.setTestDate(handleTime);
|
|
|
+ //更新
|
|
|
+ this.xinyiDailyMapper.updateTXinyiDaily(tXinyiDaily);
|
|
|
}
|
|
|
+ }
|
|
|
+ return "ok";
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 手动处理化验数据 增加两个字段 时间和小时
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping("/dateUpdateHuaYan")
|
|
|
+ public String dateUpdateHuaYan() {
|
|
|
+ //获取全部数据
|
|
|
+ List<TXinyiLaboratory> tXinyiLaboratories = this.xinyiLaboratoryMapper.selectTXinyiLaboratoryList(null);
|
|
|
+ if(!CollectionUtils.isEmpty(tXinyiLaboratories)){
|
|
|
+ for (TXinyiLaboratory tXinyiLaboratory : tXinyiLaboratories) {
|
|
|
+ String handleTime = handleDate(tXinyiLaboratory.getTestTime());
|
|
|
+ tXinyiLaboratory.setTestTime(handleTime);//到分为止
|
|
|
+ tXinyiLaboratory.setTestDate(handleTime.substring(0, 12));
|
|
|
+ tXinyiLaboratory.setTestHour(handleTime.substring(0, 9));
|
|
|
+ //更新
|
|
|
+ this.xinyiLaboratoryMapper.updateTXinyiLaboratory(tXinyiLaboratory);
|
|
|
+ }
|
|
|
+ }
|
|
|
return "ok";
|
|
|
}
|
|
|
|
|
|
|
|
|
+ //机器人数据表 直接删除,重新同步视图,修改视图的逻辑
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
public static void main(String[] args) {
|
|
|
// File file = new File("C:\\Users\\10109\\Desktop\\新程序\\历史数据");
|
|
|
// if(file.isDirectory()){
|
|
@@ -446,9 +511,18 @@ public class HandleDataController extends BaseController
|
|
|
// }
|
|
|
|
|
|
|
|
|
- String str = "2022/17/11 19:00:1";
|
|
|
+ String str = "2022/7/11 19:00";
|
|
|
// String str = "2022/7/1";
|
|
|
// String str = "0:0:1";
|
|
|
+ String newStr = handleDate(str);
|
|
|
+ System.out.println(newStr);
|
|
|
+ System.out.println(str.substring(0, 12));
|
|
|
+ System.out.println(str.substring(0, 9));
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public static String handleDate(String str){
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
if(str.contains(" ")){//包含空格 就是年月日时分秒了
|
|
|
String[] split = str.split(" ");
|
|
@@ -463,11 +537,10 @@ public class HandleDataController extends BaseController
|
|
|
}else {
|
|
|
sb.append(str);
|
|
|
}
|
|
|
- }
|
|
|
- System.out.println(sb.toString());
|
|
|
+ }
|
|
|
+ return sb.toString();
|
|
|
}
|
|
|
|
|
|
-
|
|
|
public static StringBuilder addBeforeZero(StringBuilder sb, String str, String tag){
|
|
|
String[] split = str.split(tag);
|
|
|
int length = split.length;
|