1 Star 0 Fork 0

xlizy/common-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
base_po.go 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
xlizy 提交于 2024-04-09 16:16 . init
package models
import (
"gitee.com/xlizy/common-go/base/xtime"
"gorm.io/gorm/schema"
)
type ControlBy struct {
CreatedBy string `json:"createdBy" gorm:"column:created_by;index;comment:创建者"`
UpdatedBy string `json:"updatedBy" gorm:"column:updated_by;index;comment:更新者"`
}
// SetCreatedBy 设置创建人id
func (e *ControlBy) SetCreatedBy(createdBy string) {
e.CreatedBy = createdBy
}
// SetUpdatedBy 设置修改人id
func (e *ControlBy) SetUpdatedBy(updatedBy string) {
e.UpdatedBy = updatedBy
}
type PrimaryKey struct {
Id string `json:"id" gorm:"column:id;primaryKey;comment:主键编码" url:"id"`
}
// SetPrimaryKey 主键
func (e *PrimaryKey) SetPrimaryKey(primaryKey string) {
e.Id = primaryKey
}
type ModelTime struct {
CreatedAt xtime.Time `json:"createdTime" gorm:"column:created_time;comment:创建时间" url:"createdTime"`
UpdatedAt xtime.Time `json:"updatedTime" gorm:"column:updated_time;comment:最后更新时间" url:"updatedTime"`
}
type ActiveRecord interface {
schema.Tabler
SetCreatedBy(createBy int64)
SetUpdatedBy(updateBy int64)
Generate() ActiveRecord
GetId() interface{}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/xlizy/common-go.git
git@gitee.com:xlizy/common-go.git
xlizy
common-go
common-go
v0.2.20

搜索帮助

0d507c66 1850385 C8b1a773 1850385