This commit is contained in:
2022-09-02 16:21:20 +08:00
parent 0fb22fa625
commit c0ce68f5b2
77 changed files with 1020 additions and 264 deletions

View File

@@ -0,0 +1,43 @@
package com.cnbm.basic.excel;
import cn.afterturn.easypoi.excel.annotation.Excel;
import lombok.Data;
import java.time.LocalDateTime;
/**
* 过程检验-工艺-检验参数 关系表
*
* @author why
* @since 2022-09-01
*/
@Data
public class FeaturesStageProcedureRelationExcel {
@Excel(name = "ID")
private Long id;
@Excel(name = "检验参数id,关联product_features表")
private Long productFeaturesId;
@Excel(name = "工序id,关联 working_procedure 表")
private Long workingProcedureId;
@Excel(name = "如果为空就代表4个阶段都不是检验阶段1 进货检验、 2 过程检验、 3 成品检验、 4 出货检验")
private Integer inspectionStage;
@Excel(name = "备注")
private String remark;
@Excel(name = "删除标志,是否有效:1 可用 0不可用")
private Integer valid;
@Excel(name = "创建人")
private Long creatorId;
@Excel(name = "创建人姓名")
private String creatorName;
@Excel(name = "创建时间")
private LocalDateTime createTime;
@Excel(name = "更新人")
private Long updaterId;
@Excel(name = "更新人姓名")
private String updaterName;
@Excel(name = "更新时间")
private LocalDateTime updateTime;
@Excel(name = "版本号")
private Integer version;
}

View File

@@ -37,8 +37,6 @@ public class ProductFeaturesExcel {
private Float sl;
@Excel(name = "检验参数 规格上线")
private Float usl;
@Excel(name = "工序id关联 working_procedure 表id")
private Long workingProcedureId;
@Excel(name = "分析图形关联control_graph表id")
private Long controlGraphId;
@Excel(name = "是否需要spc分析1 yes;0 no")

View File

@@ -39,8 +39,6 @@ public class ProductFeaturesHisExcel {
private Float sl;
@Excel(name = "检验参数 规格上线")
private Float usl;
@Excel(name = "工序id关联 working_procedure 表id")
private Long workingProcedureId;
@Excel(name = "是否需要spc分析1 yes;0 no")
private Integer isSpc;
@Excel(name = "分析图形关联control_graph表id")

View File

@@ -20,7 +20,7 @@ public class ProductTypeExcel {
@Excel(name = "产品类型 编码")
private String code;
@Excel(name = "描述")
private String desc;
private String descs;
@Excel(name = "1 可用0 不可用")
private Integer status;
@Excel(name = "备注")