2026-05-25 fb8c147422f4359bd0f6f51203cd9ed0e8c6eb4d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.quality.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.io.Serializable;
 
@Data
@Schema(name = "QualityInspectStatDto", description = "质量检验统计DTO")
public class QualityInspectStatDto implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "类别(0:原材料;1:半成品;2:成品)")
    private Integer modelType;
 
    @Schema(description = "总数量")
    private BigDecimal totalCount;
 
    @Schema(description = "已完成数量")
    private BigDecimal completedCount;
}