liu
5 天以前 a5f66f55b2c176e8504b8a077e00acfe2dfb4b00
src/main/java/com/ruoyi/production/pojo/ProductionProductMain.java
@@ -21,6 +21,11 @@
    @Excel(name = "报工单号")
    private String productNo;
    @Schema(description = "报工产品大类:小提琴/大提琴/贝斯")
    @TableField("major_category")
    @Excel(name = "产品大类")
    private String majorCategory;
    @Schema(description = "报工人员id")
    private Long userId;
@@ -32,6 +37,18 @@
    @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)
@@ -60,4 +77,8 @@
    @Schema(description = "工时")
    private BigDecimal workHour;
    @Schema(description = "补修理工时")
    @TableField("repair_work_hour")
    private BigDecimal repairWorkHour;
}