代码拉取完成,页面将自动刷新
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{}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。