xiaoyi
3 天以前 abf1c0a35d85d38239ff5d2ed746a4e4b797c9d1
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
70
71
72
73
74
75
76
77
78
79
package cn.iocoder.yudao.module.mes.dal.dataobject.pd.reel;
 
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
import cn.iocoder.yudao.module.mes.enums.DictTypeConstants;
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("product_ctc_reel")
@KeySequence("product_ctc_reel_seq")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class ProductCtcReelDO extends BaseDO {
 
    /**
     * 编号
     */
    @TableId
    private Long id;
    /**
     * 换位导线产品ID(关联 product_ctc.id)
     */
    private Long ctcId;
    /**
     * 盘具类型(木盘/铁盘/钢盘)
     *
     * 字典 {@link DictTypeConstants#PRODUCT_REEL_TYPE}
     */
    private String reelType;
    /**
     * 盘具外径(mm)
     */
    private BigDecimal reelOuterDiameter;
    /**
     * 盘芯内径(mm)
     */
    private BigDecimal reelInnerDiameter;
    /**
     * 盘宽(mm)
     */
    private BigDecimal reelWidth;
    /**
     * 最大容量(km)
     */
    private BigDecimal maxCapacity;
    /**
     * 推荐每盘长度(km)
     */
    private BigDecimal recommendedLength;
    /**
     * 净重(kg)
     */
    private BigDecimal netWeight;
    /**
     * 毛重(kg)
     */
    private BigDecimal grossWeight;
    /**
     * 计算公式(保存计算逻辑)
     */
    private String calcFormula;
    /**
     * 备注
     */
    private String remark;
 
}