huanghongfa
2021-12-14 d7ea73196c8eb7df71c20b4fdccbc1ef9eff96fe
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.panzhihua.common.model.dtos;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author lyq
 * 运营后台数据看板请求参数
 */
@Data
@ApiModel("运营后台数据看板请求参数")
public class DataKanBansDto {
 
    @ApiModelProperty("社区用户量统计类型(1.累计用户  2.本月新增)")
    private Integer type;
 
    /**
     * 社区用户量统计类型(1.累计用户  2.本月新增)
     */
    public interface type{
        int lj = 1;
        int by = 2;
    }
}