|
@@ -252,47 +252,65 @@ public class HandleDataController extends BaseController
|
|
|
}
|
|
|
|
|
|
@GetMapping("/dateUpdateCL")
|
|
|
- public void dateUpdateCL() {
|
|
|
+ public String dateUpdateCL() {
|
|
|
String fileName = "除磷加药瞬时流量";
|
|
|
//输入目录
|
|
|
- ExcelReader reader = ExcelUtil.getReader("C:\\Users\\10109\\Desktop\\parse-data\\AdvertiseGen\\" + fileName + ".xls");
|
|
|
+ ExcelReader reader = ExcelUtil.getReader("C:\\Users\\10109\\Desktop\\新程序\\" + fileName + ".xls");
|
|
|
//解析数据
|
|
|
List<List<Object>> readAll = reader.read();
|
|
|
if(!CollectionUtils.isEmpty(readAll)){
|
|
|
for (List<Object> objects : readAll) {
|
|
|
- String time = objects.get(0) + " " + objects.get(1).toString().substring(0, 5);
|
|
|
+ String time = "20" + objects.get(0) + " " + objects.get(1).toString().substring(0, 5);
|
|
|
System.out.println("time = " + time);
|
|
|
TXinyiIndustry uniqueTXinyiIndustry = this.xinyiIndustryMapper.getUniqueTXinyiIndustry(time);
|
|
|
if(!Objects.isNull(uniqueTXinyiIndustry)){
|
|
|
- BigDecimal CLJYSSLL = Objects.isNull(objects.get(2)) ? null : (BigDecimal) objects.get(2);
|
|
|
+ System.out.println(objects.get(2));
|
|
|
+ BigDecimal CLJYSSLL = Objects.isNull(objects.get(2)) ? null : new BigDecimal(String.valueOf(objects.get(2)));
|
|
|
uniqueTXinyiIndustry.setCLJYSSLL(CLJYSSLL);
|
|
|
this.xinyiIndustryMapper.updateTXinyiIndustry(uniqueTXinyiIndustry);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ return "ok";
|
|
|
}
|
|
|
|
|
|
|
|
|
@GetMapping("/dateUpdateSJTY")
|
|
|
- public void dateUpdateSJTY() {
|
|
|
+ public String dateUpdateSJTY() {
|
|
|
String fileName = "信义污水厂实际碳源加药量";
|
|
|
//输入目录
|
|
|
- ExcelReader reader = ExcelUtil.getReader("C:\\Users\\10109\\Desktop\\parse-data\\AdvertiseGen\\" + fileName + ".xls");
|
|
|
+ ExcelReader reader = ExcelUtil.getReader("C:\\Users\\10109\\Desktop\\新程序\\" + fileName + ".xls");
|
|
|
//解析数据
|
|
|
List<List<Object>> readAll = reader.read();
|
|
|
if(!CollectionUtils.isEmpty(readAll)){
|
|
|
+ int i = 0;
|
|
|
for (List<Object> objects : readAll) {
|
|
|
- cn.hutool.core.date.DateTime time = (DateTime) objects.get(0);
|
|
|
- System.out.println("time = " + time);
|
|
|
- String format = DateUtil.format(time, DateUtils.YYYYMMDDHHMM_TS);
|
|
|
- System.out.println("format = " + format);
|
|
|
+ String format = "";
|
|
|
+ if(objects.get(0) instanceof String){
|
|
|
+ System.out.println("----------是字符串类型的");
|
|
|
+ String time = ((String) objects.get(0));
|
|
|
+ System.out.println("time = " + time);
|
|
|
+ format = time.replaceAll("-", "/").substring(0, 16);
|
|
|
+ }else if (objects.get(0) instanceof cn.hutool.core.date.DateTime){
|
|
|
+ System.out.println("++++++++++是日期类型的");
|
|
|
+ cn.hutool.core.date.DateTime time = (DateTime) objects.get(0);
|
|
|
+ System.out.println("time = " + time);
|
|
|
+ format = DateUtil.format(time, DateUtils.YYYYMMDDHHMM_TS);
|
|
|
+ System.out.println("format = " + format);
|
|
|
+ }else {
|
|
|
+ System.out.println(JSON.toJSONString(objects));
|
|
|
+ format = "";
|
|
|
+ i++;
|
|
|
+ }
|
|
|
TXinyiIndustry uniqueTXinyiIndustry = this.xinyiIndustryMapper.getUniqueTXinyiIndustry(format);
|
|
|
if(!Objects.isNull(uniqueTXinyiIndustry)){
|
|
|
- BigDecimal SJTYJLY = Objects.isNull(objects.get(1)) ? null : (BigDecimal) objects.get(1);
|
|
|
+ BigDecimal SJTYJLY = Objects.isNull(objects.get(1)) ? null : new BigDecimal(String.valueOf(objects.get(1)));
|
|
|
uniqueTXinyiIndustry.setSJTYJLY(SJTYJLY);
|
|
|
this.xinyiIndustryMapper.updateTXinyiIndustry(uniqueTXinyiIndustry);
|
|
|
}
|
|
|
}
|
|
|
+ System.out.println("i =" + i);
|
|
|
}
|
|
|
+ return "ok";
|
|
|
}
|
|
|
}
|