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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package org.jeecg.modules.dncFlow.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Description: nc程序与电子图版签派
 * @Author: jeecg-boot
 * @Date:   2025-03-19
 * @Version: V1.0
 */
@Data
@TableName("nc_dispatch_file")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="nc_dispatch_file对象", description="nc程序与电子图版签派")
public class  DispatchFile implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**主键*/
    @TableId(type = IdType.ASSIGN_ID)
    @ApiModelProperty(value = "主键")
    private String id;
    /**产品id*/
    @Excel(name = "产品id", width = 15)
    @ApiModelProperty(value = "产品id")
    private String productId;
    /**部件id*/
    @Excel(name = "部件id", width = 15)
    @ApiModelProperty(value = "部件id")
    private String componentId;
    /**零件id*/
    @Excel(name = "零件id", width = 15)
    @ApiModelProperty(value = "零件id")
    private String partsId;
    /**工艺规程id*/
    @Excel(name = "工艺规程id", width = 15)
    @ApiModelProperty(value = "工艺规程id")
    private String psvId;
    /**工序id*/
    @Excel(name = "工序id", width = 15)
    @ApiModelProperty(value = "工序id")
    private String processId;
    /**工步id*/
    @Excel(name = "工步id", width = 15)
    @ApiModelProperty(value = "工步id")
    private String stepId;
    /**所属ID*/
    @Excel(name = "所属ID", width = 15)
    @ApiModelProperty(value = "所属ID")
    private String attributionId;
    /**所属type*/
    @Excel(name = "所属type", width = 15)
    @ApiModelProperty(value = "所属type")
    private String attributionType;
    /**文件类型*/
    @Excel(name = "文件类型", width = 15)
    @ApiModelProperty(value = "文件类型")
    private String docClassCode;
    /**设备类id*/
    @Excel(name = "设备类id", width = 15)
    @ApiModelProperty(value = "设备类id")
    private String deviceTypeId;
    /**文档id*/
    @Excel(name = "文档id", width = 15)
    @ApiModelProperty(value = "文档id")
    private String docId;
    /**文件表id*/
    @Excel(name = "文件表id", width = 15)
    @ApiModelProperty(value = "文件表id")
    private String fileId;
    /**当前节点*/
    @Excel(name = "当前节点", width = 15)
    @ApiModelProperty(value = "当前节点")
    private String currentNode;
    /**节点状态*/
    @Excel(name = "节点状态", width = 15)
    @ApiModelProperty(value = "节点状态")
    private String nodeState;
    /**创建人*/
    @ApiModelProperty(value = "创建人")
    private String createBy;
    /**创建日期*/
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "创建日期")
    private Date createTime;
    /**更新人*/
    @ApiModelProperty(value = "更新人")
    private String updateBy;
    /**更新日期*/
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "更新日期")
    private Date updateTime;
 
    /**申请理由*/
    @ApiModelProperty(value = "申请理由")
    private transient String organization;
}