IntelligentRecognition/ah-jjsp-service/.svn/pristine/d5/d5c0c4e4e87623027c20286c007...

33 lines
776 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.securityControl.system.domain.vo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ApiModel("运行日志管理")
public class SysRunningLogVo {
@ApiModelProperty("系统名称")
private String sysName;
@ApiModelProperty("系统版本")
private String sysVersion;
@ApiModelProperty("系统启动时间")
private String sysStartTime;
@ApiModelProperty("系统运行时长(天)")
private Integer sysRunningTime;
@ApiModelProperty("日志信息")
private String sysLogInfo;
@ApiModelProperty("系统运行状态0-运行中1-已停运)")
private String sysStatus;
@ApiModelProperty("系统类型")
private String logType;
}