This commit is contained in:
caixiang
2022-07-27 20:04:38 +08:00
parent d26600892f
commit fde6a8b684
10 changed files with 384 additions and 27 deletions

View File

@@ -0,0 +1,32 @@
package com.cnbm.processInspection.dto;
import com.cnbm.basic.entity.ProductFeatures;
import com.cnbm.influx.param.Range;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
import java.util.List;
/**
* @Desc: ""
* @Author: caixiang
* @DATE: 2022/7/26 14:44
*/
@Data
@ApiModel(value = "控制图 查询参数类")
public class GraphArg {
@ApiModelProperty(value = "检验特性,,全量传过来")
private ProductFeatures productFeatures;
@ApiModelProperty(value = "查询时间段,开始")
private Date begin;
@ApiModelProperty(value = "查询时间段,结束")
private Date end;
@ApiModelProperty(value = "判读方案列表")
private List<InterpretationListArg> interpretationScheme;
}

View File

@@ -0,0 +1,18 @@
package com.cnbm.processInspection.dto;
import lombok.Data;
import java.util.ArrayList;
import java.util.List;
/**
* @Desc: ""
* @Author: caixiang
* @DATE: 2022/7/27 15:56
*/
@Data
public class InterpretationListArg {
private Integer number;
private Integer arg1;
private Integer arg2;
}