张天森
2022-09-18 e1ef6d473d1eeec5b08de1eb44b7a950123b00ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.panzhihua.common.model.dtos.community.sanshuo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import springfox.documentation.annotations.ApiIgnore;
 
@Data
@ApiModel("大屏事件入参(区三说会堂,行业分中心,街道,社区数据)")
public class IndexDateDTO {
    @ApiModelProperty("1区三说会堂,2行业分中心,3街道、镇,4社区/村")
    private Integer type;
    @ApiModelProperty("行业分中心id或街道id或社区id(type=1不传,type=2传行业分中心id,type=3传街道id,type=4传社区id)")
    private Long id;
    @ApiModelProperty(hidden = true)
    private Integer level;
}