serv\web- 日志
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
package org.xyzh.common.dto.system;
|
||||
import java.util.Date;
|
||||
|
||||
import org.xyzh.common.dto.BaseDTO;
|
||||
|
||||
/**
|
||||
@@ -65,7 +67,7 @@ public class TbSysLoginLog extends BaseDTO {
|
||||
* @author yslg
|
||||
* @since 2025-09-16
|
||||
*/
|
||||
private String loginTime;
|
||||
private Date loginTime;
|
||||
|
||||
/**
|
||||
* @description 登录状态(0失败 1成功)
|
||||
@@ -144,11 +146,11 @@ public class TbSysLoginLog extends BaseDTO {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public String getLoginTime() {
|
||||
public Date getLoginTime() {
|
||||
return loginTime;
|
||||
}
|
||||
|
||||
public void setLoginTime(String loginTime) {
|
||||
public void setLoginTime(Date loginTime) {
|
||||
this.loginTime = loginTime;
|
||||
}
|
||||
|
||||
|
||||
@@ -28,6 +28,20 @@ public class PermissionVO extends BaseDTO{
|
||||
*/
|
||||
private String moduleID;
|
||||
|
||||
/**
|
||||
* @description 模块名称
|
||||
* @author yslg
|
||||
* @since 2025-10-30
|
||||
*/
|
||||
private String moduleName;
|
||||
|
||||
/**
|
||||
* @description 模块描述
|
||||
* @author yslg
|
||||
* @since 2025-10-30
|
||||
*/
|
||||
private String moduleDescription;
|
||||
|
||||
/**
|
||||
* @description 权限名称
|
||||
* @author yslg
|
||||
@@ -77,6 +91,48 @@ public class PermissionVO extends BaseDTO{
|
||||
*/
|
||||
private String bindType;
|
||||
|
||||
/**
|
||||
* @description 菜单ID(用于权限绑定菜单查询)
|
||||
* @author yslg
|
||||
* @since 2025-10-30
|
||||
*/
|
||||
private String menuID;
|
||||
|
||||
/**
|
||||
* @description 菜单名称(用于权限绑定菜单查询)
|
||||
* @author yslg
|
||||
* @since 2025-10-30
|
||||
*/
|
||||
private String menuName;
|
||||
|
||||
/**
|
||||
* @description 菜单描述(用于权限绑定菜单查询)
|
||||
* @author yslg
|
||||
* @since 2025-10-30
|
||||
*/
|
||||
private String menuUrl;
|
||||
|
||||
/**
|
||||
* @description 角色ID(用于权限绑定角色查询)
|
||||
* @author yslg
|
||||
* @since 2025-10-30
|
||||
*/
|
||||
private String roleID;
|
||||
|
||||
/**
|
||||
* @description 角色名称(用于权限绑定角色查询)
|
||||
* @author yslg
|
||||
* @since 2025-10-30
|
||||
*/
|
||||
private String roleName;
|
||||
|
||||
/**
|
||||
* @description 角色描述(用于权限绑定角色查询)
|
||||
* @author yslg
|
||||
* @since 2025-10-30
|
||||
*/
|
||||
private String roleDescription;
|
||||
|
||||
/**
|
||||
* @description 绑定菜单
|
||||
* @author yslg
|
||||
@@ -120,6 +176,22 @@ public class PermissionVO extends BaseDTO{
|
||||
this.moduleID = moduleID;
|
||||
}
|
||||
|
||||
public String getModuleName() {
|
||||
return moduleName;
|
||||
}
|
||||
|
||||
public void setModuleName(String moduleName) {
|
||||
this.moduleName = moduleName;
|
||||
}
|
||||
|
||||
public String getModuleDescription() {
|
||||
return moduleDescription;
|
||||
}
|
||||
|
||||
public void setModuleDescription(String moduleDescription) {
|
||||
this.moduleDescription = moduleDescription;
|
||||
}
|
||||
|
||||
public String getPermissionID() {
|
||||
return permissionID;
|
||||
}
|
||||
@@ -224,4 +296,52 @@ public class PermissionVO extends BaseDTO{
|
||||
this.module = module;
|
||||
}
|
||||
|
||||
public String getMenuID() {
|
||||
return menuID;
|
||||
}
|
||||
|
||||
public void setMenuID(String menuID) {
|
||||
this.menuID = menuID;
|
||||
}
|
||||
|
||||
public String getMenuName() {
|
||||
return menuName;
|
||||
}
|
||||
|
||||
public void setMenuName(String menuName) {
|
||||
this.menuName = menuName;
|
||||
}
|
||||
|
||||
public String getMenuUrl() {
|
||||
return menuUrl;
|
||||
}
|
||||
|
||||
public void setMenuUrl(String menuUrl) {
|
||||
this.menuUrl = menuUrl;
|
||||
}
|
||||
|
||||
public String getRoleID() {
|
||||
return roleID;
|
||||
}
|
||||
|
||||
public void setRoleID(String roleID) {
|
||||
this.roleID = roleID;
|
||||
}
|
||||
|
||||
public String getRoleName() {
|
||||
return roleName;
|
||||
}
|
||||
|
||||
public void setRoleName(String roleName) {
|
||||
this.roleName = roleName;
|
||||
}
|
||||
|
||||
public String getRoleDescription() {
|
||||
return roleDescription;
|
||||
}
|
||||
|
||||
public void setRoleDescription(String roleDescription) {
|
||||
this.roleDescription = roleDescription;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -16,13 +16,33 @@ public class TaskItemVO extends TbLearningTask {
|
||||
private String resourceName;
|
||||
private String userID;
|
||||
private String username;
|
||||
private String deptID;
|
||||
private String deptName;
|
||||
private String parentID;
|
||||
private Boolean required;
|
||||
private Integer orderNum;
|
||||
private Integer status;
|
||||
private BigDecimal progress;
|
||||
private Date completeTime;
|
||||
|
||||
|
||||
public String getDeptID() {
|
||||
return deptID;
|
||||
}
|
||||
public void setDeptID(String deptID) {
|
||||
this.deptID = deptID;
|
||||
}
|
||||
public String getDeptName() {
|
||||
return deptName;
|
||||
}
|
||||
public void setDeptName(String deptName) {
|
||||
this.deptName = deptName;
|
||||
}
|
||||
public String getParentID() {
|
||||
return parentID;
|
||||
}
|
||||
public void setParentID(String parentID) {
|
||||
this.parentID = parentID;
|
||||
}
|
||||
|
||||
public TaskItemVO() {
|
||||
}
|
||||
|
||||
@@ -18,6 +18,8 @@ public class UserVO {
|
||||
private Integer level;
|
||||
private String idCard;
|
||||
private String address;
|
||||
private String deptID;
|
||||
private String parentID;
|
||||
private String deptName;
|
||||
private String roleName;
|
||||
private Date createTime;
|
||||
@@ -25,6 +27,21 @@ public class UserVO {
|
||||
private Date deleteTime;
|
||||
private Boolean deleted;
|
||||
private Integer status;
|
||||
|
||||
public String getDeptID() {
|
||||
return deptID;
|
||||
}
|
||||
public void setDeptID(String deptID) {
|
||||
this.deptID = deptID;
|
||||
}
|
||||
public String getParentID() {
|
||||
return parentID;
|
||||
}
|
||||
public void setParentID(String parentID) {
|
||||
this.parentID = parentID;
|
||||
}
|
||||
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user