1 Star 0 Fork 0

bugsmo/go-utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
uuid_id.go 541 Bytes
一键复制 编辑 原始数据 按行查看 历史
bugsmo 提交于 2024-06-01 22:06 . v1.0.0
package mixin
import (
"entgo.io/ent"
"entgo.io/ent/schema/field"
"entgo.io/ent/schema/index"
"entgo.io/ent/schema/mixin"
"github.com/google/uuid"
)
var _ ent.Mixin = (*UuidId)(nil)
type UuidId struct{ mixin.Schema }
func (UuidId) Fields() []ent.Field {
return []ent.Field{
field.UUID("id", uuid.UUID{}).
Comment("id").
Default(uuid.New).
Unique().
Immutable().
StructTag(`json:"id,omitempty"`),
}
}
// Indexes of the UuidId.
func (UuidId) Indexes() []ent.Index {
return []ent.Index{
index.Fields("id"),
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ssxlt/go-utils.git
git@gitee.com:ssxlt/go-utils.git
ssxlt
go-utils
go-utils
entgo/v1.0.1

搜索帮助