puzhibing
2024-01-30 03f1f3372a10a08f96f3308bfa099e86a55046d0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
 
}