| | |
| | | import com.ruoyi.dto.DateQueryDto; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.Data; |
| | | |
| | | import jakarta.validation.constraints.NotBlank; |
| | |
| | | /** |
| | | * 数量 |
| | | */ |
| | | @Excel(name = "数量") |
| | | @Excel(name = "总数量") |
| | | private BigDecimal quantity; |
| | | |
| | | @Excel(name = "合格数量") |
| | | @TableField("qualified_quantity") |
| | | @NotNull(message = "合格数量不能为空") |
| | | private BigDecimal qualifiedQuantity; |
| | | |
| | | @Excel(name = "不合格数量") |
| | | @TableField("unqualified_quantity") |
| | | @NotNull(message = "不合格数量不能为空") |
| | | private BigDecimal unqualifiedQuantity; |
| | | |
| | | /** |
| | | * 检测单位 |
| | | */ |