是否累计负数 private Integer isCumuNeg;
| | |
| | | @Schema(description = "累计单位", required = true) |
| | | private String cumulateUnit; |
| | | |
| | | @Schema(description = "是否累计负数", required = true) |
| | | private Integer isCumuNeg; |
| | | |
| | | @Schema(description = "除数", required = true) |
| | | private Integer divisor; |
| | | } |
| | |
| | | @ExcelProperty("累计单位") |
| | | private String cumulateUnit; |
| | | |
| | | @Schema(description = "是否累计负数") |
| | | @ExcelProperty("是否累计负数") |
| | | private Integer isCumuNeg; |
| | | |
| | | @Schema(description = "除数") |
| | | @ExcelProperty("除数") |
| | | private Integer divisor; |
| | |
| | | @ExcelProperty("累计单位") |
| | | private String cumulateUnit; |
| | | |
| | | @ExcelProperty("是否累计负数") |
| | | private Integer isCumuNeg; |
| | | |
| | | @ExcelProperty("除数") |
| | | private Integer divisor; |
| | | |