package com.ruoyi.quality.dto; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import java.io.Serializable; /** * 质量月度合格率包装DTO(按月分组) */ @Data @Schema(name = "QualityMonthlyPassRateWrapperDto", description = "质量月度合格率包装DTO(按月分组)") public class QualityMonthlyPassRateWrapperDto implements Serializable { private static final long serialVersionUID = 1L; @Schema(description = "月份") private String month; @Schema(description = "原材料") private QualityPassRateDto rawMaterial; @Schema(description = "半成品") private QualityPassRateDto process; @Schema(description = "成品") private QualityPassRateDto outgoing; }