huminmin
2026-05-14 beddea151f8995d56efa0e133ddfa4e567f5a671
src/main/java/com/ruoyi/production/bean/vo/ProductionOperationTaskVo.java
@@ -29,9 +29,36 @@
    @Schema(description = "工单类型 正常/返工返修")
    private String workOrderType;
    @Schema(description = "生产任务数")
    private Long productionTaskCount;
    @Schema(description = "良品数")
    private BigDecimal goodQuantity;
    @Schema(description = "报废数量")
    private BigDecimal scrapQty;
    @Schema(description = "完成进度")
    private BigDecimal completionStatus;
    @Schema(description = "报工人员名称,多个使用逗号分隔")
    private String userNames;
    @Schema(description = "是否结束)")
    private Boolean endOrder;
    @Schema(description = "类型 区分计时和计件(0计时1计件)")
    private Integer type;
    @Schema(description = "班组长名称")
    private String leaderName;
    @Schema(description = "班组长用户ID")
    private Long leaderUserId;
    @Schema(description = "班组团员用户ID")
    private Long teamUserId;
    @Schema(description = "班组团员名称")
    private String teamUserName;
}