zss
2026-04-25 b069101e1bf347ceab11e33d73b2fbb7f37d4686
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
package com.ruoyi.production.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.Getter;
import lombok.Setter;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 生产工单报工参数表
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2026-04-21 03:55:52
 */
@Data
@TableName("production_operation_main_param")
@Schema(name = "ProductionOperationMainParam对象", description = "生产工单报工参数表")
public class ProductionOperationMainParam implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "id")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @Schema(description = "工艺路线工序参数表id")
    private Long technologyRoutingOperationParamId;
 
    @Schema(description = "参数编码(唯一标识)")
    private String paramCode;
 
    @Schema(description = "参数名称")
    private String paramName;
 
    @Schema(description = "参数类型(1数字 2文本 3下拉选择 4时间)")
    private Byte paramType;
 
    @Schema(description = "参数格式")
    private String paramFormat;
 
    @Schema(description = "单位")
    private String unit;
 
    @Schema(description = "是否必填")
    private Byte isRequired;
 
    @Schema(description = "备注")
    private String remark;
 
    @Schema(description = "创建人")
    @TableField(fill = FieldFill.INSERT)
    private String createUser;
 
    @Schema(description = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    @Schema(description = "修改人")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private String updateUser;
 
    @Schema(description = "修改时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
 
    @Schema(description = "部门ID")
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
 
    @Schema(description = "基础参数ID")
    private Long technologyParamId;
 
    @Schema(description = "工序id")
    private Long technologyOperationId;
 
    @Schema(description = "工序参数ID")
    private Long technologyOperationParamId;
 
    @Schema(description = "工艺路线工序ID")
    private Long technologyRoutingOperationId;
 
    @Schema(description = "标准值")
    private String standardValue;
 
    @Schema(description = "输入值")
    private String value;
 
    @Schema(description = "生产订单工艺路线工序参数ID")
    private String productionOrderRoutingOperationParamId;
}