liyong
6 天以前 536774eea8902efc088c5b904ff75bbe0af33418
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package cn.iocoder.yudao.module.mes.dal.dataobject.qc.template;
 
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
import cn.iocoder.yudao.module.mes.dal.dataobject.md.item.MesMdItemDO;
import com.baomidou.mybatisplus.annotation.KeySequence;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.*;
 
import java.math.BigDecimal;
 
/**
 * MES 质检方案-产品关联 DO
 *
 * @author 芋道源码
 */
@TableName("mes_qc_template_item")
@KeySequence("mes_qc_template_item_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class MesQcTemplateItemDO extends BaseDO {
 
    /**
     * 编号
     */
    @TableId
    private Long id;
    /**
     * 质检方案编号
     *
     * 关联 {@link MesQcTemplateDO#getId()}
     */
    private Long templateId;
    /**
     * 产品物料编号
     *
     * 关联 {@link MesMdItemDO#getId()}
     */
    private Long itemId;
    /**
     * 最低检测数
     */
    private Integer quantityCheck;
    /**
     * 最大不合格数(0=不启用)
     */
    private Integer quantityUnqualified;
    /**
     * 最大致命缺陷率(%,0=不允许)
     */
    private BigDecimal criticalRate;
    /**
     * 最大严重缺陷率(%,0=不允许)
     */
    private BigDecimal majorRate;
    /**
     * 最大轻微缺陷率(%)
     */
    private BigDecimal minorRate;
    /**
     * 备注
     */
    private String remark;
 
}