Reconstruct the permission system

This commit is contained in:
2023-10-30 16:28:32 +08:00
parent 97af1331e2
commit 69680dd4ad
48 changed files with 191 additions and 112 deletions

View File

@@ -7,7 +7,7 @@ import java.io.Serializable
/**
* <p>
* 功能
* 功能
* </p>
*
* @author FatttSnake
@@ -37,12 +37,6 @@ class Operation : Serializable {
@TableField("power_id")
var powerId: Long? = null
/**
* 父ID
*/
@TableField("parent_id")
var parentId: Long? = null
/**
* 页面元素ID
*/
@@ -50,6 +44,6 @@ class Operation : Serializable {
var elementId: Long? = null
override fun toString(): String {
return "Operation(id=$id, name=$name, code=$code, powerId=$powerId, parentId=$parentId, elementId=$elementId)"
return "Operation(id=$id, name=$name, code=$code, powerId=$powerId, elementId=$elementId)"
}
}