mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-14 20:41:21 +08:00
13 lines
347 B
Go
13 lines
347 B
Go
package response
|
|
|
|
import "github.com/flipped-aurora/gin-vue-admin/server/model/system"
|
|
|
|
type SysAuthorityResponse struct {
|
|
Authority system.SysAuthority `json:"authority"`
|
|
}
|
|
|
|
type SysAuthorityCopyResponse struct {
|
|
Authority system.SysAuthority `json:"authority"`
|
|
OldAuthorityId uint `json:"oldAuthorityId"` // 旧角色ID
|
|
}
|