This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAPI/internal/db/models/version_model.go
T
2020-10-13 20:05:13 +08:00

17 lines
301 B
Go

package models
// 数据库结构版本
type Version struct {
Id uint64 `field:"id"` // ID
Version string `field:"version"` //
}
type VersionOperator struct {
Id interface{} // ID
Version interface{} //
}
func NewVersionOperator() *VersionOperator {
return &VersionOperator{}
}