11 lines
373 B
Go
11 lines
373 B
Go
|
package model
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Base struct {
|
||
|
OrgID string `gorm:"column:org_id;type:varchar;primaryKey;comment:组织ID"` // 组织ID
|
||
|
ID string `gorm:"column:id;type:varchar;primaryKey;comment:ID"` // ID
|
||
|
CreatedAt time.Time `gorm:"column:created_at;comment:创建时间"`
|
||
|
UpdatedAt time.Time `gorm:"column:updated_at;comment:更新时间"`
|
||
|
}
|