yangys
2025-07-04 fc588c6e5ccac038cab378931d9bac3033e28f98
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
package org.springblade.mdm.program.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Getter;
import lombok.Setter;
import org.springblade.core.mp.base.BizEntity;
 
import java.time.LocalDate;
import java.time.LocalDateTime;
 
@Setter
@Getter
@TableName("mdm_nc_node")
public class NcNode extends BizEntity {
    private String name;
    private Long parentId;
 
    /**
     * 上级父id集合
     */
    private String parentIds;
    /**
     * 设备编号
     */
    private String machineCode;
 
 
 
    /**
     * 工序,如“精铣”
     */
    private String processName;
 
    /**
     * 工序版次
     */
    //private String processEdition;
 
    /**
     * 工艺版次
     */
    //private String craftEdition;
    /**
     * 零组件号/图号
     */
    private String partNo;
    /**
     * 图号版次
     */
    //private String partNoEdition;
 
    /**
     * 是否固化
     */
    private Integer isCured;
    /**
     * 过期日期
     */
    //private LocalDate expireDate;
    /**
     * 是否锁定
     */
    //private Integer isLocked;
    /**
     * 节点类型:字典
      */
    private String nodeType;
 
    private String description;
    private String remark;
 
 
}