mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-27 20:19:07 +00:00
`gofmt -l` listed 26 files. Seventeen of them were missing the newline at the end of the file; the rest are indentation that used spaces where the file uses tabs, a handful of call sites written `f(a,b)`, and the doc comment spacing gofmt has rewritten since 1.19 (`//X` to `// X`). Nothing here changes behaviour: `go build ./...` and `go vet ./...` are clean and `go test ./common/...` passes, which is the half of the tree these files are concentrated in. Only the files gofmt named are touched, so the diff reads line by line rather than as a reflow of the whole repository. `gofmt -l` is now empty, which is the precondition for gating it in CI -- worth doing, but a separate change.
17 lines
512 B
Go
17 lines
512 B
Go
package models
|
|
|
|
type SysApi struct {
|
|
Id int `json:"id" gorm:"primaryKey;autoIncrement;comment:主键编码"`
|
|
Handle string `json:"handle" gorm:"size:128;comment:handle"`
|
|
Title string `json:"title" gorm:"size:128;comment:标题"`
|
|
Path string `json:"path" gorm:"size:128;comment:地址"`
|
|
Type string `json:"type" gorm:"size:16;comment:接口类型"`
|
|
Action string `json:"action" gorm:"size:16;comment:请求类型"`
|
|
ModelTime
|
|
ControlBy
|
|
}
|
|
|
|
func (SysApi) TableName() string {
|
|
return "sys_api"
|
|
}
|