src/main/java/com/ruoyi/production/bean/dto/ProductionProductOutputDto.java
@@ -1,5 +1,6 @@
package com.ruoyi.production.bean.dto;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.math.BigDecimal;
@@ -7,19 +8,33 @@
@Data
public class ProductionProductOutputDto {
    @Schema(description = "主键ID")
    private Long id;
    @Schema(description = "产品主表ID")
    private Long productMainId;
    @Schema(description = "生产产品主表ID")
    private Long productionProductMainId;
    @Schema(description = "产品型号ID")
    private Long productModelId;
    @Schema(description = "数量")
    private BigDecimal quantity;
    @Schema(description = "报废数量")
    private BigDecimal scrapQty;
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
    @Schema(description = "更新时间")
    private LocalDateTime updateTime;
    @Schema(description = "租户ID")
    private Long tenantId;
    @Schema(description = "创建人")
    private Integer createUser;
    @Schema(description = "更新人")
    private Integer updateUser;
    @Schema(description = "部门ID")
    private Long deptId;
    @Schema(description = "产品编号")
    private String productNo;
    @Schema(description = "规格型号")
    private String model;
}