13 lines
315 B
Go
13 lines
315 B
Go
|
package response
|
||
|
|
||
|
import "goweb-gin-demo/model/system"
|
||
|
|
||
|
type SysAuthorityResponse struct {
|
||
|
Authority system.SysAuthority `json:"authority"`
|
||
|
}
|
||
|
|
||
|
type SysAuthorityCopyResponse struct {
|
||
|
Authority system.SysAuthority `json:"authority"`
|
||
|
OldAuthorityId string `json:"oldAuthorityId"` // 旧角色ID
|
||
|
}
|