chenhj
8 天以前 76640d343082d1473a482e7ba48461db9b26c035
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
package com.ruoyi.production.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 生产订单工艺路线工序表
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2026-04-21 03:55:52
 */
@Data
@TableName("production_order_routing_operation")
@Schema(name = "ProductionOrderRoutingOperation对象", description = "生产订单工艺路线工序表")
public class ProductionOrderRoutingOperation implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @Schema(description = "生产订单id")
    private Long productionOrderId;
 
    @Schema(description = "工艺路线工序表id(额外新增的时候这个字段是空的)")
    private Long technologyRoutingOperationId;
 
    @Schema(description = "生产订单工艺路线id")
    private Long orderRoutingId;
 
    @Schema(description = "产品规格id")
    private Long productModelId;
 
    @Schema(description = "录入时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    @Schema(description = "更新时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
 
    @Schema(description = "拖动排序")
    private Integer dragSort;
 
    @Schema(description = "是否质检工序")
    private Boolean isQuality;
 
    @Schema(description = "是否生产")
    private Boolean isProduction;
 
    @Schema(description = "创建人ID")
    @TableField(fill = FieldFill.INSERT)
    private Long createUser;
 
    @Schema(description = "部门ID")
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
 
    @Schema(description = "工序名称")
    private String operationName;
 
    @Schema(description = "工序表id")
    private Long technologyOperationId;
}