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
27
28
29
30
31
32
33
34
35
36
| package com.ycl.vo;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * <p>
| *
| * </p>
| *
| * @author wl
| * @since 2022-09-27
| */
| @Data
| @ApiModel("违建事项设置")
| public class IllegalBuildingSettingVO {
| /**
| * 违规事项编号
| */
| @ApiModelProperty(value ="违建事项编号" )
| private Integer number;
|
| /**
| * 所属类型
| */
| @ApiModelProperty(value = "所属类型",dataType = "String")
| private String type;
|
| /**
| * 所属类别
| */
| @ApiModelProperty(value = "所属类别",dataType = "String")
| private String typeFirst;
|
| }
|
|