puhanshu
2022-03-14 dec24c9d3a66b3d4303b0c120818ec27bba611ef
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
26
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;
 
    private String areaCode;
    /**
     * 社区用户量统计类型(1.累计用户  2.本月新增)
     */
    public interface type{
        int lj = 1;
        int by = 2;
    }
}