2020-04-04 21:39:07 +08:00
|
|
|
package model
|
2019-09-08 16:37:05 +08:00
|
|
|
|
|
|
|
import (
|
2020-08-23 15:13:23 +08:00
|
|
|
"gorm.io/gorm"
|
2019-09-08 16:37:05 +08:00
|
|
|
)
|
|
|
|
|
2019-12-12 13:21:16 +08:00
|
|
|
type SysApi struct {
|
2019-09-21 17:38:51 +08:00
|
|
|
gorm.Model
|
2020-06-07 14:56:37 +08:00
|
|
|
Path string `json:"path" gorm:"comment:'api路径'"`
|
|
|
|
Description string `json:"description" gorm:"comment:'api中文描述'"`
|
|
|
|
ApiGroup string `json:"apiGroup" gorm:"comment:'api组'"`
|
|
|
|
Method string `json:"method" gorm:"default:'POST'" gorm:"comment:'方法'"`
|
2020-05-19 22:08:45 +08:00
|
|
|
}
|