sys_api.go 350 B

123456789101112131415161718
  1. package response
  2. import (
  3. "github.com/flipped-aurora/gin-vue-admin/server/model/system"
  4. )
  5. type SysAPIResponse struct {
  6. Api system.SysApi `json:"api"`
  7. }
  8. type SysAPIListResponse struct {
  9. Apis []system.SysApi `json:"apis"`
  10. }
  11. type SysSyncApis struct {
  12. NewApis []system.SysApi `json:"newApis"`
  13. DeleteApis []system.SysApi `json:"deleteApis"`
  14. }