sys_api.go 190 B

1234567891011
  1. package response
  2. import "lc-fangdaosha/model/system"
  3. type SysAPIResponse struct {
  4. Api system.SysApi `json:"api"`
  5. }
  6. type SysAPIListResponse struct {
  7. Apis []system.SysApi `json:"apis"`
  8. }