sys_authority.go 304 B

123456789101112
  1. package response
  2. import "gin-vue-admin/model"
  3. type SysAuthorityResponse struct {
  4. Authority model.SysAuthority `json:"authority"`
  5. }
  6. type SysAuthorityCopyResponse struct {
  7. Authority model.SysAuthority `json:"authority"`
  8. OldAuthorityId string `json:"oldAuthorityId"` // 旧角色ID
  9. }