fusenapi/server/home-user-auth/home-user-auth_test.go

19 lines
383 B
Go
Raw Normal View History

2023-06-06 04:24:19 +00:00
package main
2023-06-08 07:41:49 +00:00
import (
"testing"
)
type FsCanteenType struct {
Id int64 `db:"id"` // ID
Name string `db:"name"` // 餐厅名字
Sort int64 `db:"sort"` // 排序
Status int64 `db:"status"` // 状态位 1启用0停用
Ctime int64 `db:"ctime"` // 添加时间
}
2023-06-06 04:24:19 +00:00
func TestMain(t *testing.T) {
2023-06-08 07:41:49 +00:00
// log.Println(model.RawFieldNames[FsCanteenType]())
2023-06-06 04:24:19 +00:00
main()
}