buhuazhen
5 天以前 5ddc232b8dffcb3402711874491df35fb1997d1d
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
@@ -25,12 +26,6 @@
    @Schema(description = "报工人员")
    private String userName;
    @Schema(description = "生产项目id")
    private Long productProcessRouteItemId;
    @Schema(description = "工单id")
    private Long workOrderId;
    @Schema(description = "生产工序工单id")
    private Long productionOperationTaskId;
@@ -51,9 +46,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 +57,7 @@
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
    @Schema(description = "工时")
    private BigDecimal workHour;
}