| | |
| | | @ApiModelProperty(value = "streamingEnabled") |
| | | private Boolean streamingEnabled; |
| | | |
| | | @ApiModelProperty(value = "最近校验状态") |
| | | private String validateStatus; |
| | | |
| | | @ApiModelProperty(value = "最近校验信息") |
| | | private String lastValidateMessage; |
| | | |
| | | @ApiModelProperty(value = "最近校验耗时") |
| | | private Long lastValidateElapsedMs; |
| | | |
| | | @ApiModelProperty(value = "最近校验时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date lastValidateTime; |
| | | |
| | | @ApiModelProperty(value = "状态") |
| | | private Integer status; |
| | | |
| | |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.updateTime); |
| | | } |
| | | |
| | | public String getLastValidateTime$() { |
| | | if (this.lastValidateTime == null) { |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.lastValidateTime); |
| | | } |
| | | } |