4 天以前 84ac2b6b12bc3e5de072661fb25e87877c01d0d7
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
package cn.iocoder.yudao.module.mes.dal.dataobject.pro.workorder;
 
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
import cn.iocoder.yudao.module.mes.dal.dataobject.pd.processparamtemplate.MesPdProcessParamTemplateDO;
import com.baomidou.mybatisplus.annotation.KeySequence;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.*;
 
/**
 * MES 生产工单参数记录 DO
 *
 * @author 芋道源码
 */
@TableName("mes_pro_work_order_param_record")
@KeySequence("mes_pro_work_order_param_record_seq")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class MesProWorkOrderParamRecordDO extends BaseDO {
 
    /**
     * 编号
     */
    @TableId
    private Long id;
    /**
     * 生产工单编号
     *
     * 关联 {@link MesProWorkOrderDO#getId()}
     */
    private Long workOrderId;
 
 
    private Long taskId;
    /**
     * 参数模板编号
     *
     * 关联 {@link MesPdProcessParamTemplateDO#getId()}
     */
    private Long templateId;
    /**
     * 模板编码(快照)
     */
    private String templateCode;
    /**
     * 模板名称(快照)
     */
    private String templateName;
    /**
     * 记录序号/批次号
     */
    private String recordNo;
    /**
     * 备注
     */
    private String remark;
 
}