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;
|
}
|