2023-03-22 22:45:17 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
type Base struct {
|
2023-03-23 21:27:28 +08:00
|
|
|
OrgID string `gorm:"column:org_id;type:varchar;primaryKey;comment:组织ID"`
|
|
|
|
ID string `gorm:"column:id;type:varchar;primaryKey;comment:ID"`
|
2023-03-22 22:45:17 +08:00
|
|
|
CreatedAt time.Time `gorm:"column:created_at;comment:创建时间"`
|
|
|
|
UpdatedAt time.Time `gorm:"column:updated_at;comment:更新时间"`
|
|
|
|
}
|