sys_api.go 186 B

12345678910111213
  1. package response
  2. import (
  3. "server/dao/system"
  4. )
  5. type SysAPIResponse struct {
  6. Api system.SysApi `json:"api"`
  7. }
  8. type SysAPIListResponse struct {
  9. Apis []system.SysApi `json:"apis"`
  10. }