2021-07-16 20:08:11 +08:00
|
|
|
package response
|
|
|
|
|
2021-08-23 23:13:24 +08:00
|
|
|
import "github.com/flipped-aurora/gin-vue-admin/server/model/system"
|
2021-07-16 20:08:11 +08:00
|
|
|
|
|
|
|
type SysAuthorityResponse struct {
|
|
|
|
Authority system.SysAuthority `json:"authority"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type SysAuthorityCopyResponse struct {
|
|
|
|
Authority system.SysAuthority `json:"authority"`
|
2022-06-29 22:12:53 +08:00
|
|
|
OldAuthorityId uint `json:"oldAuthorityId"` // 旧角色ID
|
2021-07-16 20:08:11 +08:00
|
|
|
}
|