huminmin
2026-07-13 53c0da6e44a01acf9d97bdc7abaf25e5984b92dc
src/main/java/com/ruoyi/production/bean/dto/ProductionProductMainDto.java
@@ -21,6 +21,24 @@
    @Schema(description = "报工ID")
    private Long productMainId;
    @Schema(description = "报工单号")
    private String reportNo;
    @Schema(description = "报工结果类型:0合格,1轻微返工,2严重返工,3报废")
    private Integer reportType;
    @Schema(description = "报工结果类型名称")
    private String reportTypeName;
    @Schema(description = "审核状态:0待审核,1审核通过,2审核不通过")
    private Integer auditStatus;
    @Schema(description = "审核状态名称")
    private String auditStatusName;
    @Schema(description = "审核意见")
    private String auditRemark;
    @Schema(description = "租户ID")
    private Long tenantId;
@@ -69,6 +87,12 @@
    @Schema(description = "工资")
    private BigDecimal wages;
    @Schema(description = "工资修正金额")
    private BigDecimal adjustAmount;
    @Schema(description = "工资修正说明")
    private String adjustRemark;
    @Schema(description = "工序参数列表")
    private List<ProductionOrderRoutingOperationParam> productionOperationParamList;
}