package com.ruoyi.system.api.domain;
|
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.common.core.annotation.Excel;
|
import com.ruoyi.common.core.annotation.Excel.ColumnType;
|
import com.ruoyi.common.core.web.domain.BaseEntity;
|
import lombok.Data;
|
|
/**
|
* 操作日志记录表 oper_log
|
*
|
* @author ruoyi
|
*/
|
@Data
|
public class SysOperLog
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 日志主键 */
|
@Excel(name = "操作序号", cellType = ColumnType.NUMERIC)
|
@TableField(value = "oper_id")
|
private Long operId;
|
|
/** 操作模块 */
|
@Excel(name = "操作模块")
|
private String title;
|
|
/** 操作人员 */
|
@Excel(name = "操作人员")
|
@TableField(value = "oper_name")
|
private String operName;
|
|
/** 部门名称 */
|
@Excel(name = "部门名称")
|
@TableField(value = "dept_name")
|
private String deptName;
|
|
/** 操作时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "操作时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
@TableField(value = "oper_time")
|
private Date operTime;
|
|
|
@Excel(name = "电话")
|
private String phone;
|
|
|
|
}
|