114 Star 953 Fork 251

GVPGokins/Gokins

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
t_artifact_version.go 726 Bytes
一键复制 编辑 原始数据 按行查看 历史
UchihaRuis 提交于 2021-07-22 10:53 +08:00 . feat: v1.0.0
package model
import (
"time"
)
type TArtifactVersion struct {
Id string `xorm:"not null pk VARCHAR(64)" json:"id"`
Aid int64 `xorm:"not null pk autoincr BIGINT(20)" json:"aid"`
RepoId string `xorm:"index(rpnm) VARCHAR(64)" json:"repoId"`
PackageId string `xorm:"VARCHAR(64)" json:"packageId"`
Name string `xorm:"index(rpnm) VARCHAR(100)" json:"name"`
Version string `xorm:"VARCHAR(100)" json:"version"`
Sha string `xorm:"VARCHAR(100)" json:"sha"`
Desc string `xorm:"VARCHAR(500)" json:"desc"`
Preview int `xorm:"INT(1)" json:"preview"`
Created time.Time `xorm:"DATETIME" json:"created"`
Updated time.Time `xorm:"DATETIME" json:"updated"`
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/gokins/gokins.git
git@gitee.com:gokins/gokins.git
gokins
gokins
Gokins
master

搜索帮助