2022-07-25 16:58:55 +08:00
|
|
|
package com.cnbm.processInspection.dto;
|
|
|
|
|
|
|
|
import com.cnbm.common.spc.math.StandardDiviation;
|
2022-08-01 13:42:54 +08:00
|
|
|
import com.cnbm.processInspection.graphAnalyzed.forMeterage.ms.MSDGraphEntity;
|
2022-07-25 16:58:55 +08:00
|
|
|
import com.cnbm.qualityPlanning.entity.ControlLimit;
|
2022-12-01 11:45:05 +08:00
|
|
|
import com.cnbm.qualityPlanning.entity.ControlLimitDetail;
|
2022-07-25 16:58:55 +08:00
|
|
|
import com.cnbm.qualityPlanning.entity.ProcessCapability;
|
|
|
|
import com.cnbm.qualityPlanning.entity.SpecificationLimit;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Desc: ""
|
|
|
|
* @Author: caixiang
|
|
|
|
* @DATE: 2022/7/22 14:18
|
|
|
|
*/
|
|
|
|
@Data
|
2022-11-25 10:12:33 +08:00
|
|
|
@ApiModel(value = "均值-标准差控制图 结果类")
|
2022-07-25 16:58:55 +08:00
|
|
|
public class XbarSGraphData {
|
|
|
|
@ApiModelProperty(value = "控制图list数据")
|
|
|
|
private MSDGraphEntity msdGraphEntity;
|
|
|
|
@ApiModelProperty(value = "xbar控制图 控制限")
|
2022-12-01 11:45:05 +08:00
|
|
|
private ControlLimitDetail XBarCL;
|
2022-07-25 16:58:55 +08:00
|
|
|
@ApiModelProperty(value = "s控制图 控制限")
|
2022-12-01 11:45:05 +08:00
|
|
|
private ControlLimitDetail SCL;
|
2022-07-25 16:58:55 +08:00
|
|
|
|
|
|
|
@ApiModelProperty(value = "工艺规格限")
|
|
|
|
private SpecificationLimit SL;
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "工序能力")
|
|
|
|
private ProcessCapability processCapability;
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "标准差/总体标准差")
|
|
|
|
private StandardDiviation standardDiviation;
|
|
|
|
|
|
|
|
|
2022-12-01 11:45:05 +08:00
|
|
|
public XbarSGraphData(MSDGraphEntity msdGraphEntity,ControlLimitDetail xBarCL,ControlLimitDetail sCL,SpecificationLimit sl,ProcessCapability processCapability,StandardDiviation standardDiviation){
|
2022-07-25 16:58:55 +08:00
|
|
|
this.msdGraphEntity = msdGraphEntity;
|
|
|
|
this.XBarCL = xBarCL;
|
|
|
|
this.SCL = sCL;
|
|
|
|
this.SL = sl;
|
|
|
|
this.processCapability = processCapability;
|
|
|
|
this.standardDiviation = standardDiviation;
|
|
|
|
}
|
|
|
|
}
|