更改字段说明
This commit is contained in:
@@ -10,20 +10,20 @@ public class UserOptLog {
|
||||
/**
|
||||
* 模块名
|
||||
*/
|
||||
private String model_name = "adminapi";
|
||||
private String model_name = "sysapi";
|
||||
/**
|
||||
* 日志详情
|
||||
*/
|
||||
private String log_content;
|
||||
/**
|
||||
* 业务类型 1:登录 2:退出 3:修改用户设置
|
||||
* 业务类型 LOGIN:登录 LOGOUT:退出 USER_UI_SET:修改用户设置 USER_INFO_OPT:增删改用户信息
|
||||
*
|
||||
*/
|
||||
private Byte log_type;
|
||||
private String log_type;
|
||||
/**
|
||||
* 操作类别 0:新增 1:修改 2:删除
|
||||
* 操作类别 ADD:新增 UPDATE:修改 DELETE:删除
|
||||
*/
|
||||
private Byte opt_type;
|
||||
private String opt_type;
|
||||
/**
|
||||
* 操作用户id
|
||||
*/
|
||||
@@ -103,22 +103,6 @@ public class UserOptLog {
|
||||
this.log_content = log_content;
|
||||
}
|
||||
|
||||
public Byte getLog_type() {
|
||||
return log_type;
|
||||
}
|
||||
|
||||
public void setLog_type(Byte log_type) {
|
||||
this.log_type = log_type;
|
||||
}
|
||||
|
||||
public Byte getOpt_type() {
|
||||
return opt_type;
|
||||
}
|
||||
|
||||
public void setOpt_type(Byte opt_type) {
|
||||
this.opt_type = opt_type;
|
||||
}
|
||||
|
||||
public String getUser_id() {
|
||||
return user_id;
|
||||
}
|
||||
@@ -166,4 +150,17 @@ public class UserOptLog {
|
||||
public void setLog_datetime(Long log_datetime) {
|
||||
this.log_datetime = log_datetime;
|
||||
}
|
||||
public String getLog_type() {
|
||||
return log_type;
|
||||
}
|
||||
public void setLog_type(String log_type) {
|
||||
this.log_type = log_type;
|
||||
}
|
||||
public String getOpt_type() {
|
||||
return opt_type;
|
||||
}
|
||||
public void setOpt_type(String opt_type) {
|
||||
this.opt_type = opt_type;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user