zhanghua
2023-03-16 7fc2d4db0603bfe826a8ddb8259ecfd88d30f192
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
37
38
39
40
41
42
43
44
45
46
47
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 ViolationSettingVO {
    /**
     * 违规事项编号
     */
    @ApiModelProperty(value ="违规事项编号" )
    private Integer number;
 
    /**
     * 所属类型
     */
    @ApiModelProperty(value = "所属类型",dataType = "String")
    private String type;
 
    /**
     * 所属大类
     */
    @ApiModelProperty(value = "所属大类",dataType = "String")
    private String typeFirst;
 
    /**
     * 所属小类
     */
    @ApiModelProperty(value = "所属小类",dataType = "String")
    private String typeSecond;
 
    /**
     * 案由
     */
    @ApiModelProperty(value = "案由",dataType = "String")
    private String typeThird;
}