huminmin
2026-04-25 a96948456e0a21ab33deeb2edfdd7ef343aec5bf
src/main/java/com/ruoyi/production/pojo/ProductionOrderRoutingOperation.java
@@ -3,8 +3,6 @@
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;
@@ -33,8 +31,8 @@
    @Schema(description = "工艺路线工序表id")
    private Long technologyRoutingOperationId;
    @Schema(description = "工艺路线id")
    private Long technologyRoutingId;
    @Schema(description = "生产订单工艺路线id")
    private Long orderRoutingId;
    @Schema(description = "产品规格id")
    private Long productModelId;
@@ -53,6 +51,9 @@
    @Schema(description = "是否质检工序")
    private Boolean isQuality;
    @Schema(description = "是否生产")
    private Boolean isProduction;
    @Schema(description = "创建人ID")
    @TableField(fill = FieldFill.INSERT)
    private Long createUser;
@@ -60,4 +61,7 @@
    @Schema(description = "部门ID")
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
    @Schema(description = "工序名称")
    private String operationName;
}