| | |
| | | package com.ruoyi.quality.dto; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | * 检验指标统计DTO |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "QualityParameterStatDto", description = "检验指标统计DTO") |
| | | @Schema(name = "QualityParameterStatDto", description = "检验指标统计DTO") |
| | | public class QualityParameterStatDto implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty(value = "指标名称") |
| | | @Schema(description = "指标名称") |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value = "数量") |
| | | @Schema(description = "数量") |
| | | private BigDecimal count; |
| | | |
| | | @ApiModelProperty(value = "百分比") |
| | | @Schema(description = "百分比") |
| | | private BigDecimal percentage; |
| | | } |