IntelligentRecognition/ah-jjsp-service/.svn/pristine/17/172f35fcdcef334dd111dbc2782...

53 lines
1.3 KiB
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 com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
@Data
@ApiModel("日志管理")
public class SysLogVo {
@ApiModelProperty("用户身份(角色名称)")
private String roleName;
@ApiModelProperty("操作人员")
private String operName;
@ApiModelProperty("操作类型")
private String grade;
@ApiModelProperty("日志类型")
private String logType;
@ApiModelProperty("操作模块")
private String title;
@ApiModelProperty("业务类型0查询 1新增 2修改 3删除 4授权 5导出 6导入 7强退 8生成代码 9清空数据")
private Integer businessType;
@ApiModelProperty("操作详情(操作内容)")
private String detail;
@ApiModelProperty("部门名称(所属单位)")
private String deptName;
@ApiModelProperty("请求url")
private String operUrl;
@ApiModelProperty("操作地址")
private String operIp;
@ApiModelProperty("操作状态0正常 1异常")
private Integer status;
@ApiModelProperty("操作时间yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date operTime;
}