广州市综治平台后端
huangh
2025-06-16 7f5c97eb5f34d31f2d73d846ab6fd2d36a9145c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cn.huge.module.analysis.domain.dto;
 
import lombok.Data;
 
@Data
public class CountRepeateDto {
    /**
     *聚合类型
     */
    private String groupByType;
    /**
     * 数量
     */
    private Integer repeatCount;
}