feat:完善项目管理,增加网站首页接口信息

This commit is contained in:
henry
2021-12-15 14:31:14 +08:00
parent 3c55143278
commit ba62a25e4b
21 changed files with 471 additions and 50 deletions

View File

@ -0,0 +1,17 @@
package model
// ServiceDocking 对接信息数据模型
type ServiceDocking struct {
Model
UID uint64 `gorm:"column:uid;type:int;default:0;comment:用户uuid" json:"-"`
ModelDeleted
ModelAt
}
func (m *ServiceDocking) TableName() string {
return "service_docking"
}
func NewServiceDocking() *ServiceDocking {
return &ServiceDocking{}
}