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.math.BigDecimal; import java.time.LocalDate; import java.time.LocalDateTime; /** *

* 生产工单表 *

* * @author 芯导软件(江苏)有限公司 * @since 2026-04-21 03:55:52 */ @Data @TableName("production_operation_task") @Schema(name = "ProductionOperationTask对象", description = "生产工单表") public class ProductionOperationTask 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 technologyRoutingOperationId; @Schema(description = "录入时间") @TableField(fill = FieldFill.INSERT) private LocalDateTime createTime; @Schema(description = "更新时间") @TableField(fill = FieldFill.INSERT_UPDATE) private LocalDateTime updateTime; @Schema(description = "工单编号") private String workOrderNo; @Schema(description = "计划开始时间") private LocalDate planStartTime; @Schema(description = "计划结束时间") private LocalDate planEndTime; @Schema(description = "实际开始时间") private LocalDate actualStartTime; @Schema(description = "实际结束时间") private LocalDate actualEndTime; @Schema(description = "状态 1 待确认 2 待生产 3生产中 4已生产") private Integer status; @Schema(description = "生产订单id") private Long productionOrderId; @Schema(description = "计划数量") private BigDecimal planQuantity; @Schema(description = "完成数量") private BigDecimal completeQuantity; @Schema(description = "创建人ID") @TableField(fill = FieldFill.INSERT) private Long createUser; @Schema(description = "部门ID") @TableField(fill = FieldFill.INSERT) private Long deptId; @Schema(description = "权限用户ID列表,格式:[1,2,3]。指定多个用户ID时,用逗号分隔。") private String userIds; }