mark for pull
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package com.cnbm.qualityPlanning.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Desc: "整合,处理好 后的一行数据 (sampleSize 后的数据) "
|
||||
* @Author: caixiang
|
||||
* @DATE: 2022/7/21 9:43
|
||||
*/
|
||||
@Data
|
||||
public class CPoint {
|
||||
|
||||
private ControlLimit controlLimit;
|
||||
|
||||
private Integer position;
|
||||
|
||||
//不合格品数
|
||||
private Double value;
|
||||
|
||||
private String name;
|
||||
|
||||
public CPoint(ControlLimit controlLimit, Integer position, Double value, String name) {
|
||||
this.controlLimit = controlLimit;
|
||||
this.position = position;
|
||||
this.value = value;
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
package com.cnbm.qualityPlanning.entity;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* @Desc: "整合,处理好 后的一行数据 (sampleSize 后的数据) "
|
||||
* @Author: caixiang
|
||||
* @DATE: 2022/7/21 9:43
|
||||
*/
|
||||
@Data
|
||||
public class NPPoint{
|
||||
|
||||
private ControlLimit controlLimit;
|
||||
|
||||
private Integer position;
|
||||
|
||||
//不合格品数
|
||||
private Integer value;
|
||||
private String name;
|
||||
|
||||
public NPPoint(ControlLimit controlLimit, Integer position, Integer value,String name) {
|
||||
this.controlLimit = controlLimit;
|
||||
this.position = position;
|
||||
this.value = value;
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
package com.cnbm.qualityPlanning.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Desc: "整合,处理好 后的一行数据 (sampleSize 后的数据) "
|
||||
* @Author: caixiang
|
||||
* @DATE: 2022/7/21 9:43
|
||||
*/
|
||||
@Data
|
||||
public class PPoint {
|
||||
|
||||
private ControlLimit controlLimit;
|
||||
|
||||
private Integer position;
|
||||
|
||||
//不合格品数
|
||||
private Double value;
|
||||
|
||||
private String name;
|
||||
|
||||
public PPoint(ControlLimit controlLimit, Integer position, Double value,String name) {
|
||||
this.controlLimit = controlLimit;
|
||||
this.position = position;
|
||||
this.value = value;
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
package com.cnbm.qualityPlanning.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Desc: "整合,处理好 后的一行数据 (sampleSize 后的数据) "
|
||||
* @Author: caixiang
|
||||
* @DATE: 2022/7/21 9:43
|
||||
*/
|
||||
@Data
|
||||
public class UPoint {
|
||||
|
||||
private ControlLimit controlLimit;
|
||||
|
||||
private Integer position;
|
||||
|
||||
//不合格品数
|
||||
private Double value;
|
||||
|
||||
private String name;
|
||||
|
||||
public UPoint(ControlLimit controlLimit, Integer position, Double value, String name) {
|
||||
this.controlLimit = controlLimit;
|
||||
this.position = position;
|
||||
this.value = value;
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user