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
| package com.ruoyi.dto;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| import java.math.BigDecimal;
|
| /**
| * @author :yys
| * @date : 2025/7/25 10:37
| */
| @Data
| @Schema
| public class MapDto {
|
| @Schema(description = "名称")
| private String name;
|
| @Schema(description = "数量")
| private String value;
|
| @Schema(description = "占比")
| private String rate;
|
| }
|
|