1 Star 0 Fork 0

xlizy/common-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
base_po.go 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
xlizy 提交于 2024-12-03 17:42 . save
package common_models
import (
"gitee.com/xlizy/common-go/base/xtime"
)
type ControlBy struct {
CreatorId string `json:"creatorId" gorm:"column:creator_id;index;comment:创建者"`
ModifierId string `json:"modifierId" gorm:"column:modifier_id;index;comment:更新者"`
}
// SetCreatedBy 设置创建人id
func (e *ControlBy) SetCreatedBy(creatorId string) {
e.CreatorId = creatorId
}
// SetUpdatedBy 设置修改人id
func (e *ControlBy) SetUpdatedBy(modifierId string) {
e.ModifierId = modifierId
}
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 {
CreateTime xtime.Time `json:"createTime" gorm:"column:create_time;comment:创建时间"`
ModifiedTime xtime.Time `json:"modifiedTime" gorm:"column:modified_time;comment:最后更新时间"`
}
//type ActiveRecord interface {
// schema.Tabler
// SetCreateBy(createBy int64)
// SetModifyBy(modifyBy int64)
// Generate() ActiveRecord
// GetId() interface{}
//}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/xlizy/common-go.git
git@gitee.com:xlizy/common-go.git
xlizy
common-go
common-go
v0.4.24

搜索帮助