公告板
版本库
filestore
活动
搜索
登录
aps
/
apsClient
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
json输出字符串
zhangqian
2023-12-08
a9fdd955d57f6940d170a2f4c36a9bb8f0fcf871
[aps/apsClient.git]
/
model
/
model.go
1
2
3
4
5
6
7
8
9
10
11
12
package model
import (
"time"
)
type CommonModel struct {
ID uint `gorm:"primary_key" json:"ID,string"`
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt *time.Time `sql:"index"`
}