lyh
2025-03-19 ed839069a1df066d9559263129e999de7e9c2ccc
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
package org.jeecg.modules.dncFlow.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnore;
import io.swagger.annotations.Api;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.jeecg.common.aspect.annotation.Dict;
 
import java.util.Date;
 
@Data
@NoArgsConstructor
@TableName("nc_assign_file_stream")
@Api(value= "DNC指派设备流程操作")
public class AssignFileStream {
    @TableId(value = "stream_id")
    private String streamId;
    @TableField(value = "product_id")
    private String productId;
    @TableField(value = "component_id")
    private String componentId;
    @TableField(value = "parts_id")
    private String partsId;
    @TableField(value = "process_id")
    private String processId;
    @TableField(value = "step_id")
    private String stepId;
    @TableField(value = "device_type_id")
    private String deviceTypeId;
    @TableField(value = "doc_id")
    private String docId;
    @TableField(value = "file_id")
    private String fileId;
    @TableField(value = "device_id")
    private String deviceId;
    @TableField(value = "apply_user_id")
    private String applyUserId;
    @TableField(value = "apply_reason")
    private String applyReason;
    @TableField(value = "apply_time")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
    private Date applyTime;
    @TableField(value = "approve_user_id")
    private String approveUserId;
    @TableField(value = "approve_content")
    private String approveContent;
    @TableField(value = "approve_time")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
    private Date approveTime;
    @TableField(value = "status")
    @Dict(dicCode = "dnc_assign_stream_status")
    private Integer status;
    @JsonIgnore
    @TableField(value = "create_time", select = false, fill = FieldFill.INSERT)
    private Date createTime;
    @JsonIgnore
    @TableField(value = "update_time", select = false, fill = FieldFill.UPDATE)
    private Date updateTime;
    @JsonIgnore
    @TableField(value = "create_user", select = false, fill = FieldFill.INSERT)
    private String createUser;
    @JsonIgnore
    @TableField(value = "update_user", select = false, fill = FieldFill.UPDATE)
    private String updateUser;
    @JsonIgnore
    @TableLogic
    @TableField(value = "delete_flag", select = false)
    private Integer deleteFlag = 0;
 
    /**指派设备专用-所属ID*/
    private transient String attributionId;
 
    /**指派设备专用-所属type*/
    private transient String attributionType;
}