add i18n support

This commit is contained in:
landaiqing
2024-11-12 22:59:39 +08:00
parent 97ca3fc7b0
commit ae743ba8a6
62 changed files with 4468 additions and 2797 deletions

View File

@@ -1,13 +1,15 @@
package schema
import (
"time"
"entgo.io/ent"
"entgo.io/ent/dialect"
"entgo.io/ent/dialect/entsql"
"entgo.io/ent/schema"
"entgo.io/ent/schema/edge"
"entgo.io/ent/schema/field"
"entgo.io/ent/schema/index"
"schisandra-album-cloud-microservices/common/ent/schema/mixin"
)
// ScaAuthUserDevice holds the schema definition for the ScaAuthUserDevice entity.
@@ -15,6 +17,12 @@ type ScaAuthUserDevice struct {
ent.Schema
}
func (ScaAuthUserDevice) Mixin() []ent.Mixin {
return []ent.Mixin{
mixin.DefaultMixin{},
}
}
// Fields of the ScaAuthUserDevice.
func (ScaAuthUserDevice) Fields() []ent.Field {
return []ent.Field{
@@ -36,18 +44,6 @@ func (ScaAuthUserDevice) Fields() []ent.Field {
field.String("agent").
MaxLen(255).
Comment("设备信息"),
field.Time("created_at").
Default(time.Now).
Optional().
Immutable().
Comment("创建时间"),
field.Time("update_at").
Default(time.Now).UpdateDefault(time.Now).
Nillable().
Comment("更新时间"),
field.Int("deleted").
Default(0).
Comment("是否删除"),
field.String("browser").
MaxLen(20).
Comment("浏览器"),
@@ -72,7 +68,9 @@ func (ScaAuthUserDevice) Fields() []ent.Field {
Comment("引擎名称"),
field.String("engine_version").
MaxLen(20).
Comment("引擎版本"),
Comment("引擎版本").Annotations(
entsql.WithComments(true),
),
}
}
@@ -92,3 +90,14 @@ func (ScaAuthUserDevice) Indexes() []ent.Index {
Unique(),
}
}
// Annotations of the ScaAuthUserDevice.
func (ScaAuthUserDevice) Annotations() []schema.Annotation {
return []schema.Annotation{
entsql.WithComments(true),
schema.Comment("用户设备表"),
entsql.Annotation{
Table: "sca_auth_user_device",
},
}
}