huminmin
2026-07-10 2ee9e158e3129070f6b1fd953da1540f05d4f2b0
src/main/java/com/ruoyi/production/pojo/ProductionProductMain.java
@@ -7,6 +7,7 @@
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.math.BigDecimal;
import java.time.LocalDateTime;
@Data
@@ -26,17 +27,23 @@
    @Schema(description = "报工人员")
    private String userName;
    @Schema(description = "生产项目id")
    private Long productProcessRouteItemId;
    @Schema(description = "工单id")
    private Long workOrderId;
    @Schema(description = "生产工序工单id")
    private Long productionOperationTaskId;
    @Schema(description = "报工状态")
    private Integer status;
    @Schema(description = "报工结果类型:0合格,1轻微返工,2严重返工,3报废")
    @TableField("report_type")
    private Integer reportType;
    @Schema(description = "审核状态:0待审核,1审核通过,2审核不通过")
    @TableField("audit_status")
    private Integer auditStatus;
    @Schema(description = "审核意见")
    @TableField("audit_remark")
    private String auditRemark;
    @Schema(description = "创建时间")
    @TableField(fill = FieldFill.INSERT)
@@ -51,9 +58,6 @@
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime updateTime;
    @Schema(description = "租户ID")
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    @Schema(description = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
@@ -65,4 +69,7 @@
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
    @Schema(description = "工时")
    private BigDecimal workHour;
}