| | |
| | | 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; |
| | |
| | | @Schema(description = "生产订单id") |
| | | private Long productionOrderId; |
| | | |
| | | @Schema(description = "工艺路线工序表id") |
| | | @Schema(description = "工艺路线工序表id(额外新增的时候这个字段是空的)") |
| | | private Long technologyRoutingOperationId; |
| | | |
| | | @Schema(description = "工艺路线id") |
| | | private Long technologyRoutingId; |
| | | @Schema(description = "生产订单工艺路线id") |
| | | private Long orderRoutingId; |
| | | |
| | | @Schema(description = "产品规格id") |
| | | private Long productModelId; |
| | |
| | | @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; |
| | | } |