sys_api.go 259 B

12345678910111213
  1. package model
  2. import (
  3. "github.com/jinzhu/gorm"
  4. )
  5. type SysApi struct {
  6. gorm.Model
  7. Path string `json:"path"`
  8. Description string `json:"description"`
  9. ApiGroup string `json:"apiGroup"`
  10. Method string `json:"method" gorm:"default:'POST'"`
  11. }