| | |
| | | @Data |
| | | public class MgtOperLogPageVo { |
| | | |
| | | @Excel(name = "操作内容", width = 30) |
| | | @Excel(name = "操作内容", width = 30,sort = 5) |
| | | @ApiModelProperty(value = "操作内容") |
| | | private String operContent; |
| | | @Excel(name = "操作类型", width = 30) |
| | | @Excel(name = "操作类型", width = 30,sort = 2) |
| | | @ApiModelProperty(value = "操作类型") |
| | | private String operTitle; |
| | | @Excel(name = "操作IP", width = 30) |
| | | @Excel(name = "操作IP", width = 30,sort = 4) |
| | | @ApiModelProperty(value = "操作IP") |
| | | private String operIp; |
| | | @Excel(name = "操作人员", width = 30) |
| | | @Excel(name = "操作人员", width = 30,sort = 3) |
| | | @ApiModelProperty(value = "操作人员") |
| | | private String operName; |
| | | @Excel(name = "操作时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | @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; |