product_features表

This commit is contained in:
2022-07-20 15:14:39 +08:00
parent 1830bb64ea
commit 718ad8a8c2
8 changed files with 542 additions and 0 deletions

View File

@@ -0,0 +1,80 @@
package com.cnbm.basic.excel;
import cn.afterturn.easypoi.excel.annotation.Excel;
import lombok.Data;
import java.time.LocalDateTime;
import java.math.BigDecimal;
import java.util.Date;
/**
* 产品特性 表
*
* @author why
* @since 2022-07-15
*/
@Data
public class ProductFeaturesExcel {
@Excel(name = "ID")
private BigDecimal id;
@Excel(name = "产品id,关联product表")
private BigDecimal productId;
@Excel(name = "量具id关联measure_tool表")
private BigDecimal measureToolId;
@Excel(name = "单位 id关联unit表")
private BigDecimal unitId;
@Excel(name = "产品特性 名")
private String name;
@Excel(name = "产品特性 编码")
private String code;
@Excel(name = "产品特性类型1 计量型2 计数型")
private BigDecimal type;
@Excel(name = "缺陷等级1 致命缺陷2 严重缺陷3.轻微缺陷")
private BigDecimal defectLevel;
@Excel(name = "产品特性 规格")
private String specifications;
@Excel(name = "检验参数 规格下线")
private Float lsl;
@Excel(name = "检验参数 规格中心线")
private Float sl;
@Excel(name = "检验参数 规格上线")
private Float usl;
@Excel(name = "工序id关联 working_procedure 表id")
private BigDecimal workingProcedureId;
@Excel(name = "分析图形关联control_graph表id")
private BigDecimal controlGraphId;
@Excel(name = "如果为空就代表4个阶段都不是检验阶段1 进货检验、 2 过程检验、 3 成品检验、 4 出货检验;;如果有多个用逗号隔开,比如 1,4 就代表选中了进货检验和出货检验")
private BigDecimal inspectionStage;
@Excel(name = "是否需要spc分析1 yes;0 no")
private BigDecimal isSpc;
@Excel(name = "样本大小一般2-25之间。 会依据这个size 把所有待分析的数据 组成一个一个样本")
private BigDecimal sampleSize;
@Excel(name = "采样频率,只用于展示")
private String samplingFrequency;
@Excel(name = "小数位数(限制 检验参数小数点后面位数),这个先放着后续再说。")
private BigDecimal decimalPlaces;
@Excel(name = "目标cpk")
private Float targetCpk;
@Excel(name = "目标cpk")
private Float targetPpk;
@Excel(name = "备注")
private String remark;
@Excel(name = "删除标志,是否有效:1 可用 0不可用")
private BigDecimal valid;
@Excel(name = "创建人")
private BigDecimal creatorId;
@Excel(name = "创建人姓名")
private String creatorName;
@Excel(name = "创建时间")
private LocalDateTime createTime;
@Excel(name = "更新人")
private BigDecimal updaterId;
@Excel(name = "更新人姓名")
private String updaterName;
@Excel(name = "更新时间")
private LocalDateTime updateTime;
@Excel(name = "版本号")
private BigDecimal version;
}