|
|
|
@ -6,16 +6,13 @@ import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description: 控制计划导入模板
|
|
|
|
|
* @CreateDate: 2020/9/29
|
|
|
|
|
* @Author: simon.song
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
@Api(value="控制计划导入模板",description = "控制计划导入模板")
|
|
|
|
|
@Api(value = "控制计划导入模板", description = "控制计划导入模板")
|
|
|
|
|
public class MesControlPlanTemplateModel extends BaseBean {
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 6846982556729401884L;
|
|
|
|
@ -40,25 +37,25 @@ public class MesControlPlanTemplateModel extends BaseBean {
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private String custName;
|
|
|
|
|
|
|
|
|
|
@ApiParam("控制计划版本号")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private Integer controlPlanVersion;
|
|
|
|
|
|
|
|
|
|
@ApiParam("是否启用")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private Integer isEnable;
|
|
|
|
|
// @ApiParam("控制计划版本号")
|
|
|
|
|
// @AnnoOutputColumn
|
|
|
|
|
// private Integer controlPlanVersion;
|
|
|
|
|
|
|
|
|
|
// @Column(name = "IS_ENABLE")
|
|
|
|
|
// @ApiParam("是否启用")
|
|
|
|
|
// @AnnoOutputColumn
|
|
|
|
|
// private Integer isEnable;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 中航质量标准明细表
|
|
|
|
|
*/
|
|
|
|
|
@ApiParam("工作单元代码")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private String workCellCode;
|
|
|
|
|
|
|
|
|
|
@ApiParam("质量标准版本")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private Integer qualityStandardVersion;
|
|
|
|
|
// @ApiParam("质量标准版本")
|
|
|
|
|
// @AnnoOutputColumn
|
|
|
|
|
// private Integer qualityStandardVersion;
|
|
|
|
|
|
|
|
|
|
//检测类型:10=首检,20=巡检,30=终检,40=发运检
|
|
|
|
|
@ApiParam("检测类型")
|
|
|
|
@ -87,11 +84,11 @@ public class MesControlPlanTemplateModel extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@ApiParam("是否允许让步")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private String isConcession;
|
|
|
|
|
private Integer isConcession;
|
|
|
|
|
|
|
|
|
|
@ApiParam("间隔时间")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private String checkInterval;
|
|
|
|
|
private Integer checkInterval = 0;
|
|
|
|
|
|
|
|
|
|
//个数标识:标记那几个数量需要进行检验。使用逗号间隔。如:1,2
|
|
|
|
|
@ApiParam("个数标识")
|
|
|
|
@ -119,11 +116,11 @@ public class MesControlPlanTemplateModel extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@ApiParam("公差上限")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private BigDecimal differenceMaxLimit;
|
|
|
|
|
private Double maximum = 0d;
|
|
|
|
|
|
|
|
|
|
@ApiParam("公差下限")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private BigDecimal differenceMinLimit;
|
|
|
|
|
private Double minimum = 0d;
|
|
|
|
|
|
|
|
|
|
@ApiParam("是否关键检测项")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|