package com.ruoyi.system.domain.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.common.core.annotation.Excel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @ClassName MgtOperLogPageVo
|
* @Description TODO
|
* @Author jqs
|
* @Date 2023/6/8 11:06
|
* @Version 1.0
|
*/
|
@Data
|
public class MgtOperLogPageVo {
|
|
@Excel(name = "操作内容", width = 30,sort = 5)
|
@ApiModelProperty(value = "操作内容")
|
private String operContent;
|
@Excel(name = "操作类型", width = 30,sort = 2)
|
@ApiModelProperty(value = "操作类型")
|
private String operTitle;
|
@Excel(name = "操作IP", width = 30,sort = 4)
|
@ApiModelProperty(value = "操作IP")
|
private String operIp;
|
@Excel(name = "操作人员", width = 30,sort = 3)
|
@ApiModelProperty(value = "操作人员")
|
private String operName;
|
@Excel(name = "操作时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss",sort = 1)
|
@ApiModelProperty(value = "操作时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date operTime;
|
|
}
|