goweb-gin-demo/model/web/response/authority.go

13 lines
306 B
Go

package response
import "goweb-gin-demo/model/web"
type SysAuthorityResponse struct {
Authority web.SysAuthority `json:"authority"`
}
type SysAuthorityCopyResponse struct {
Authority web.SysAuthority `json:"authority"`
OldAuthorityId string `json:"oldAuthorityId"` // 旧角色ID
}