mark
This commit is contained in:
parent
7c21dfe8e1
commit
5a9f5ee38b
@ -21,14 +21,11 @@ import springfox.documentation.spi.service.contexts.SecurityContext;
|
|||||||
import springfox.documentation.spring.web.plugins.Docket;
|
import springfox.documentation.spring.web.plugins.Docket;
|
||||||
import springfox.documentation.spring.web.plugins.WebFluxRequestHandlerProvider;
|
import springfox.documentation.spring.web.plugins.WebFluxRequestHandlerProvider;
|
||||||
import springfox.documentation.spring.web.plugins.WebMvcRequestHandlerProvider;
|
import springfox.documentation.spring.web.plugins.WebMvcRequestHandlerProvider;
|
||||||
|
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
import static com.google.common.collect.Lists.newArrayList;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Author weihongyang
|
* @Author weihongyang
|
||||||
* @Date 2022/6/21 10:56 AM
|
* @Date 2022/6/21 10:56 AM
|
||||||
@ -128,6 +125,7 @@ public class SwaggerConfig {
|
|||||||
.securitySchemes(Arrays.asList(new ApiKey("token", "token", "header")));
|
.securitySchemes(Arrays.asList(new ApiKey("token", "token", "header")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
public Docket processInspectionApi() {
|
public Docket processInspectionApi() {
|
||||||
return new Docket(DocumentationType.SWAGGER_2)
|
return new Docket(DocumentationType.SWAGGER_2)
|
||||||
|
@ -33,9 +33,9 @@ spring:
|
|||||||
enabled: true
|
enabled: true
|
||||||
redis:
|
redis:
|
||||||
database: 2
|
database: 2
|
||||||
host: redis.picaiba.com
|
host: 127.0.0.1
|
||||||
port: 6380
|
port: 6379
|
||||||
password: '@WSXcde3' # 密码(默认为空)
|
password: '' # 密码(默认为空)
|
||||||
timeout: 6000ms # 连接超时时长(毫秒)
|
timeout: 6000ms # 连接超时时长(毫秒)
|
||||||
jedis:
|
jedis:
|
||||||
pool:
|
pool:
|
||||||
|
@ -51,7 +51,6 @@ public class InspectionSheetController {
|
|||||||
@PreAuthorize("@ex.hasAuthority('code:inspectionSheet:page')")
|
@PreAuthorize("@ex.hasAuthority('code:inspectionSheet:page')")
|
||||||
public Result<PageData<InspectionSheetDTO>> page(@ApiIgnore @RequestParam Map<String, Object> params){
|
public Result<PageData<InspectionSheetDTO>> page(@ApiIgnore @RequestParam Map<String, Object> params){
|
||||||
PageData<InspectionSheetDTO> page = inspectionSheetService.page(params);
|
PageData<InspectionSheetDTO> page = inspectionSheetService.page(params);
|
||||||
|
|
||||||
return new Result<PageData<InspectionSheetDTO>>().ok(page);
|
return new Result<PageData<InspectionSheetDTO>>().ok(page);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -60,7 +59,6 @@ public class InspectionSheetController {
|
|||||||
@PreAuthorize("@ex.hasAuthority('code:inspectionSheet:info')")
|
@PreAuthorize("@ex.hasAuthority('code:inspectionSheet:info')")
|
||||||
public Result<InspectionSheetDTO> get(@PathVariable("id") Long id){
|
public Result<InspectionSheetDTO> get(@PathVariable("id") Long id){
|
||||||
InspectionSheetDTO data = inspectionSheetService.get(id);
|
InspectionSheetDTO data = inspectionSheetService.get(id);
|
||||||
|
|
||||||
return new Result<InspectionSheetDTO>().ok(data);
|
return new Result<InspectionSheetDTO>().ok(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -71,7 +69,6 @@ public class InspectionSheetController {
|
|||||||
public Result<Long> save(@RequestBody InspectionSheetDTO dto){
|
public Result<Long> save(@RequestBody InspectionSheetDTO dto){
|
||||||
//效验数据
|
//效验数据
|
||||||
ValidatorUtils.validateEntity(dto, AddGroup.class, DefaultGroup.class);
|
ValidatorUtils.validateEntity(dto, AddGroup.class, DefaultGroup.class);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
inspectionSheetService.save(dto);
|
inspectionSheetService.save(dto);
|
||||||
}catch (Exception e){
|
}catch (Exception e){
|
||||||
@ -86,9 +83,7 @@ public class InspectionSheetController {
|
|||||||
public Result<Long> update(@RequestBody InspectionSheetDTO dto){
|
public Result<Long> update(@RequestBody InspectionSheetDTO dto){
|
||||||
//效验数据
|
//效验数据
|
||||||
ValidatorUtils.validateEntity(dto, UpdateGroup.class, DefaultGroup.class);
|
ValidatorUtils.validateEntity(dto, UpdateGroup.class, DefaultGroup.class);
|
||||||
|
|
||||||
inspectionSheetService.update(dto);
|
inspectionSheetService.update(dto);
|
||||||
|
|
||||||
return new Result<Long>().ok(dto.getId());
|
return new Result<Long>().ok(dto.getId());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -99,9 +94,7 @@ public class InspectionSheetController {
|
|||||||
public Result delete(@RequestBody Long[] ids){
|
public Result delete(@RequestBody Long[] ids){
|
||||||
//效验数据
|
//效验数据
|
||||||
AssertUtils.isArrayEmpty(ids, "id");
|
AssertUtils.isArrayEmpty(ids, "id");
|
||||||
|
|
||||||
inspectionSheetService.delete(ids);
|
inspectionSheetService.delete(ids);
|
||||||
|
|
||||||
return new Result();
|
return new Result();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -111,8 +104,6 @@ public class InspectionSheetController {
|
|||||||
@PreAuthorize("@ex.hasAuthority('code:inspectionSheet:export')")
|
@PreAuthorize("@ex.hasAuthority('code:inspectionSheet:export')")
|
||||||
public void export(@ApiIgnore @RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception {
|
public void export(@ApiIgnore @RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception {
|
||||||
List<InspectionSheetDTO> list = inspectionSheetService.list(params);
|
List<InspectionSheetDTO> list = inspectionSheetService.list(params);
|
||||||
|
|
||||||
ExcelUtils.exportExcelToTarget(response, null, list, InspectionSheetExcel.class);
|
ExcelUtils.exportExcelToTarget(response, null, list, InspectionSheetExcel.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -74,7 +74,7 @@ public enum InfluxClient {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* desc: 异步批量 写入数据/更新数据
|
* desc: 异步批量 写入数据 / 更新数据
|
||||||
* notes: 如果是更新数据,要保证time字段不能改变
|
* notes: 如果是更新数据,要保证time字段不能改变
|
||||||
* auth: caixaing
|
* auth: caixaing
|
||||||
* */
|
* */
|
||||||
@ -99,7 +99,6 @@ public enum InfluxClient {
|
|||||||
.time(event.getTime().toEpochMilli(), WritePrecision.MS);
|
.time(event.getTime().toEpochMilli(), WritePrecision.MS);
|
||||||
}
|
}
|
||||||
writeApi.writePoint(point);
|
writeApi.writePoint(point);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -181,6 +180,7 @@ public enum InfluxClient {
|
|||||||
return queryApi.query(flux);
|
return queryApi.query(flux);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// public List<FluxTable> queryByGroup(QueryDataParam param){
|
// public List<FluxTable> queryByGroup(QueryDataParam param){
|
||||||
// String measurement = param.getMeasurement();
|
// String measurement = param.getMeasurement();
|
||||||
// List<String> dropedTagNames = param.getDropedTagNames();
|
// List<String> dropedTagNames = param.getDropedTagNames();
|
||||||
|
@ -63,10 +63,9 @@ public class S7DemoController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/insertDemoOne")
|
@PostMapping("/insertDemoOne")
|
||||||
public void insertDemoOne() throws InterruptedException {
|
public void insertDemoOne(){
|
||||||
|
|
||||||
List<Event> list = new ArrayList<>();
|
List<Event> list = new ArrayList<>();
|
||||||
|
|
||||||
|
|
||||||
Event event = new Event();
|
Event event = new Event();
|
||||||
event.setTime(new Date(1670554110451L).toInstant());
|
event.setTime(new Date(1670554110451L).toInstant());
|
||||||
event.setArgName("failDayDay");
|
event.setArgName("failDayDay");
|
||||||
@ -81,22 +80,9 @@ public class S7DemoController {
|
|||||||
event2.setSampleNumber("10001");
|
event2.setSampleNumber("10001");
|
||||||
list.add(event2);
|
list.add(event2);
|
||||||
InfluxClient.Client.batchInsert(list,"Weight");
|
InfluxClient.Client.batchInsert(list,"Weight");
|
||||||
|
|
||||||
// Thread.sleep(10000);
|
|
||||||
//
|
|
||||||
// List<Event> list2 = new ArrayList<>();
|
|
||||||
// Event event2 = new Event();
|
|
||||||
// event2.setTime(time);
|
|
||||||
//
|
|
||||||
// event2.setArgName("failDayDay");
|
|
||||||
// event2.setArgValue("20087");
|
|
||||||
// event2.setSampleNumber("10001");
|
|
||||||
// list2.add(event2);
|
|
||||||
//
|
|
||||||
// InfluxClient.Client.batchInsert(list2,"Weight");
|
|
||||||
}
|
}
|
||||||
@PostMapping("/readDemoOne")
|
@PostMapping("/readDemoOne")
|
||||||
public void readDemoOne() throws InterruptedException {
|
public void readDemoOne() {
|
||||||
List<String> dropNames = new ArrayList<>();
|
List<String> dropNames = new ArrayList<>();
|
||||||
dropNames.add("transationId");
|
dropNames.add("transationId");
|
||||||
// dropNames.add("inspectionSheetId");
|
// dropNames.add("inspectionSheetId");
|
||||||
@ -114,7 +100,7 @@ public class S7DemoController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/getFlux")
|
@PostMapping("/getFlux")
|
||||||
public Result<Instant> getFlux() throws InterruptedException {
|
public Result<Instant> getFlux() {
|
||||||
List<String> dropNames = new ArrayList<>();
|
List<String> dropNames = new ArrayList<>();
|
||||||
dropNames.add("transationId");
|
dropNames.add("transationId");
|
||||||
dropNames.add("inspectionSheetId");
|
dropNames.add("inspectionSheetId");
|
||||||
@ -133,7 +119,7 @@ public class S7DemoController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/saveFlux1")
|
@PostMapping("/saveFlux1")
|
||||||
public Result<Instant> saveFlux1() throws InterruptedException {
|
public Result<Instant> saveFlux1() {
|
||||||
|
|
||||||
List<Event> list = new ArrayList<>();
|
List<Event> list = new ArrayList<>();
|
||||||
Event event2 = new Event();
|
Event event2 = new Event();
|
||||||
@ -146,8 +132,9 @@ public class S7DemoController {
|
|||||||
InfluxClient.Client.batchInsert(list,"Weight");
|
InfluxClient.Client.batchInsert(list,"Weight");
|
||||||
return new Result<Instant>().ok(instant);
|
return new Result<Instant>().ok(instant);
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/saveFlux2")
|
@PostMapping("/saveFlux2")
|
||||||
public void saveFlux2(@RequestBody TIMETest timeTest) throws InterruptedException {
|
public void saveFlux2(@RequestBody TIMETest timeTest) {
|
||||||
|
|
||||||
List<Event> list = new ArrayList<>();
|
List<Event> list = new ArrayList<>();
|
||||||
Event event2 = new Event();
|
Event event2 = new Event();
|
||||||
@ -209,7 +196,7 @@ public class S7DemoController {
|
|||||||
// public void insertAndQuery() throws InterruptedException {
|
// public void insertAndQuery() throws InterruptedException {
|
||||||
// Event event = new Event();
|
// Event event = new Event();
|
||||||
//
|
//
|
||||||
//// long l = System.currentTimeMillis();
|
// long l = System.currentTimeMillis();
|
||||||
//// System.out.println("l:"+l);
|
//// System.out.println("l:"+l);
|
||||||
//// event.setTime(new Date(1669874900889l).toInstant());
|
//// event.setTime(new Date(1669874900889l).toInstant());
|
||||||
////
|
////
|
||||||
|
@ -1,13 +1,9 @@
|
|||||||
package com.cnbm.influx.controller;
|
package com.cnbm.influx.controller;
|
||||||
|
|
||||||
import com.cnbm.common.spc.util.DataUtils;
|
|
||||||
import com.cnbm.common.utils.Result;
|
import com.cnbm.common.utils.Result;
|
||||||
import com.cnbm.influx.config.InfluxClient;
|
import com.cnbm.influx.config.InfluxClient;
|
||||||
import com.cnbm.influx.constant.Constant;
|
|
||||||
import com.cnbm.influx.param.QueryDataParam;
|
import com.cnbm.influx.param.QueryDataParam;
|
||||||
import com.cnbm.influx.param.Range;
|
|
||||||
import com.cnbm.influx.param.Tag;
|
|
||||||
import com.cnbm.influx.template.Event;
|
|
||||||
import com.influxdb.query.FluxTable;
|
import com.influxdb.query.FluxTable;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
@ -15,8 +11,6 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|||||||
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestBody;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
import java.time.Instant;
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
@ -26,7 +20,6 @@ public class SPCController {
|
|||||||
|
|
||||||
@PostMapping("/getData")
|
@PostMapping("/getData")
|
||||||
public Result getData(@RequestBody QueryDataParam param){
|
public Result getData(@RequestBody QueryDataParam param){
|
||||||
|
|
||||||
List<FluxTable> query = InfluxClient.Client.query(param);
|
List<FluxTable> query = InfluxClient.Client.query(param);
|
||||||
return new Result<List<FluxTable>>().ok(query);
|
return new Result<List<FluxTable>>().ok(query);
|
||||||
}
|
}
|
||||||
|
@ -13,8 +13,6 @@ import com.cnbm.common.validator.ValidatorUtils;
|
|||||||
import com.cnbm.common.validator.group.AddGroup;
|
import com.cnbm.common.validator.group.AddGroup;
|
||||||
import com.cnbm.common.validator.group.DefaultGroup;
|
import com.cnbm.common.validator.group.DefaultGroup;
|
||||||
import com.cnbm.common.validator.group.UpdateGroup;
|
import com.cnbm.common.validator.group.UpdateGroup;
|
||||||
|
|
||||||
|
|
||||||
import com.cnbm.processInspection.dto.InspectionSampleDTO;
|
import com.cnbm.processInspection.dto.InspectionSampleDTO;
|
||||||
import com.cnbm.processInspection.dto.InspectionSampleDTO2;
|
import com.cnbm.processInspection.dto.InspectionSampleDTO2;
|
||||||
import com.cnbm.processInspection.dto.InspectionSampleDTO3;
|
import com.cnbm.processInspection.dto.InspectionSampleDTO3;
|
||||||
@ -22,7 +20,6 @@ import com.cnbm.processInspection.dto.InspectionSheetDTO;
|
|||||||
import com.cnbm.processInspection.entity.InspectionSheet;
|
import com.cnbm.processInspection.entity.InspectionSheet;
|
||||||
import com.cnbm.processInspection.excel.InspectionSheetExcel;
|
import com.cnbm.processInspection.excel.InspectionSheetExcel;
|
||||||
import com.cnbm.processInspection.service.IInspectionSheetService;
|
import com.cnbm.processInspection.service.IInspectionSheetService;
|
||||||
import com.influxdb.query.FluxTable;
|
|
||||||
import io.swagger.annotations.Api;
|
import io.swagger.annotations.Api;
|
||||||
import io.swagger.annotations.ApiImplicitParam;
|
import io.swagger.annotations.ApiImplicitParam;
|
||||||
import io.swagger.annotations.ApiImplicitParams;
|
import io.swagger.annotations.ApiImplicitParams;
|
||||||
@ -71,7 +68,6 @@ public class InspectionSheetController {
|
|||||||
@PreAuthorize("@ex.hasAuthority('processInspection:inspectionSheet:page')")
|
@PreAuthorize("@ex.hasAuthority('processInspection:inspectionSheet:page')")
|
||||||
public Result<PageData<InspectionSheetDTO>> page(@ApiIgnore @RequestParam Map<String, Object> params){
|
public Result<PageData<InspectionSheetDTO>> page(@ApiIgnore @RequestParam Map<String, Object> params){
|
||||||
PageData<InspectionSheetDTO> page = inspectionSheetService.page(params);
|
PageData<InspectionSheetDTO> page = inspectionSheetService.page(params);
|
||||||
|
|
||||||
return new Result<PageData<InspectionSheetDTO>>().ok(page);
|
return new Result<PageData<InspectionSheetDTO>>().ok(page);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -80,7 +76,6 @@ public class InspectionSheetController {
|
|||||||
@PreAuthorize("@ex.hasAuthority('processInspection:inspectionSheet:info')")
|
@PreAuthorize("@ex.hasAuthority('processInspection:inspectionSheet:info')")
|
||||||
public Result<InspectionSheetDTO> get(@PathVariable("id") Long id){
|
public Result<InspectionSheetDTO> get(@PathVariable("id") Long id){
|
||||||
InspectionSheetDTO data = inspectionSheetService.get(id);
|
InspectionSheetDTO data = inspectionSheetService.get(id);
|
||||||
|
|
||||||
return new Result<InspectionSheetDTO>().ok(data);
|
return new Result<InspectionSheetDTO>().ok(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -91,7 +86,6 @@ public class InspectionSheetController {
|
|||||||
public Result<Long> save(@RequestBody InspectionSheetDTO dto){
|
public Result<Long> save(@RequestBody InspectionSheetDTO dto){
|
||||||
//效验数据
|
//效验数据
|
||||||
ValidatorUtils.validateEntity(dto, AddGroup.class, DefaultGroup.class);
|
ValidatorUtils.validateEntity(dto, AddGroup.class, DefaultGroup.class);
|
||||||
|
|
||||||
// try {
|
// try {
|
||||||
// inspectionSheetService.saveSheet(dto);
|
// inspectionSheetService.saveSheet(dto);
|
||||||
// }catch (Exception e){
|
// }catch (Exception e){
|
||||||
@ -195,7 +189,6 @@ public class InspectionSheetController {
|
|||||||
@PostMapping("saveFluxParamList2")
|
@PostMapping("saveFluxParamList2")
|
||||||
@ApiOperation("将样本检测参数写入influxdb2")
|
@ApiOperation("将样本检测参数写入influxdb2")
|
||||||
public Result saveFluxParamList2(@RequestBody InspectionSampleDTO2[] lists) throws InterruptedException{
|
public Result saveFluxParamList2(@RequestBody InspectionSampleDTO2[] lists) throws InterruptedException{
|
||||||
|
|
||||||
inspectionSheetService.saveFluxParamList2(lists);
|
inspectionSheetService.saveFluxParamList2(lists);
|
||||||
Thread.sleep(1000);
|
Thread.sleep(1000);
|
||||||
//样本数据更新后 计算检验单缺陷数不良数
|
//样本数据更新后 计算检验单缺陷数不良数
|
||||||
@ -206,7 +199,6 @@ public class InspectionSheetController {
|
|||||||
@PostMapping("saveFluxParamList3")
|
@PostMapping("saveFluxParamList3")
|
||||||
@ApiOperation("将样本检测参数写入influxdb3")
|
@ApiOperation("将样本检测参数写入influxdb3")
|
||||||
public Result saveFluxParamList3(@RequestBody InspectionSampleDTO3[] lists) throws InterruptedException{
|
public Result saveFluxParamList3(@RequestBody InspectionSampleDTO3[] lists) throws InterruptedException{
|
||||||
|
|
||||||
inspectionSheetService.saveFluxParamList3(lists);
|
inspectionSheetService.saveFluxParamList3(lists);
|
||||||
Thread.sleep(1000);
|
Thread.sleep(1000);
|
||||||
//样本数据更新后 计算检验单缺陷数不良数
|
//样本数据更新后 计算检验单缺陷数不良数
|
||||||
|
@ -86,6 +86,8 @@ public class NPGraph {
|
|||||||
return totalFailNum/totalN;
|
return totalFailNum/totalN;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* name : 初始化数据函数
|
* name : 初始化数据函数
|
||||||
* desc : 从influxdb 里面读取数据,然后 加工处理成 我需要的
|
* desc : 从influxdb 里面读取数据,然后 加工处理成 我需要的
|
||||||
|
Loading…
Reference in New Issue
Block a user