lidongdong
2024-05-16 ba2fec4b36dfa32edf3d8f97cf7ab8f171822b78
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.panzhihua.common.model.dtos.partybuilding;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class QryReportResp {
 
    @ApiModelProperty("分类id")
    private String categoryId;
 
    @ApiModelProperty("分类名称")
    private String categoryName;
 
    @ApiModelProperty("数量")
    private String sum;
}