2020-04-04 21:39:07 +08:00
|
|
|
package model
|
2019-09-08 16:37:05 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/jinzhu/gorm"
|
|
|
|
)
|
|
|
|
|
2019-12-12 13:21:16 +08:00
|
|
|
type SysApi struct {
|
2019-09-21 17:38:51 +08:00
|
|
|
gorm.Model
|
2019-09-08 16:37:05 +08:00
|
|
|
Path string `json:"path"`
|
|
|
|
Description string `json:"description"`
|
2020-04-04 21:39:07 +08:00
|
|
|
ApiGroup string `json:"apiGroup"`
|
2020-01-18 11:08:54 +08:00
|
|
|
Method string `json:"method" gorm:"default:'POST'"`
|
2020-05-19 22:08:45 +08:00
|
|
|
}
|