package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.Date;
|
|
@Alias("Log")
|
@TableName(schema = "db_experiment",value = "tb_log")
|
@Deprecated
|
public class Log {
|
|
private Integer num;
|
/**执行操作的信息*/
|
private String operation;
|
/**执行操作的用户*/
|
private String userName;
|
/**执行操作的时间*/
|
private Date createTime;
|
|
public Integer getNum() {
|
return num;
|
}
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
public String getOperation() {
|
return operation;
|
}
|
|
public void setOperation(String operation) {
|
this.operation = operation;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|