2026-04-23 c247f5bf64c98595cc7e4efc9e1ae7ff1df79c11
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.home.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author :yys
 * @date : 2025/7/25 11:27
 */
@Data
@Schema
public class QualityStatisticsItem {
 
    @Schema(description = "原材料不合格数")
    private BigDecimal supplierNum;
 
    @Schema(description = "出厂不合格数")
    private BigDecimal factoryNum;
 
    @Schema(description = "过程不合格数")
    private BigDecimal processNum;
 
    private String date;
 
}