huminmin
2026-04-27 2a71f6790ddf6be7f63e6b009fc8d325a2a1d13b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
}