15 lines
358 B
Go
15 lines
358 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
// ApiInfo API信息
|
|
type ApiInfo struct {
|
|
ID uint `json:"id"`
|
|
Path string `json:"path"`
|
|
Description string `json:"description"`
|
|
ApiGroup string `json:"apiGroup"`
|
|
Method string `json:"method"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|