|
|
|
@ -10,6 +10,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
|
|
|
|
import javax.validation.Valid;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
@ -200,5 +201,37 @@ public class BPlanEnterprise implements Serializable {
|
|
|
|
|
private Integer checkAgeing;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 1当月 2提前 3滞后
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "1当月 2提前 3滞后")
|
|
|
|
|
private Integer RISK_LEVEL;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 安全风险等级
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "安全风险等级")
|
|
|
|
|
private String riskLevel;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 标准化等级
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "标准化等级")
|
|
|
|
|
private String standLevel;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 上次检查时间
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "上次检查时间")
|
|
|
|
|
private Date examineEndTime;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|