123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package schema
- import (
- "entgo.io/ent"
- "entgo.io/ent/dialect/entsql"
- "entgo.io/ent/schema"
- "entgo.io/ent/schema/edge"
- "entgo.io/ent/schema/field"
- "entgo.io/ent/schema/index"
- "github.com/suyuan32/simple-admin-common/orm/ent/mixins"
- "wechat-api/ent/schema/localmixin"
- )
- type LabelRelationship struct {
- ent.Schema
- }
- func (LabelRelationship) Fields() []ent.Field {
- return []ent.Field{
- field.Uint64("label_id").Default(1).
- Annotations(entsql.WithComments(true)).
- Comment("标签 ID"),
- field.Uint64("contact_id").Default(1).
- Annotations(entsql.WithComments(true)).
- Comment("联系人 ID"),
- }
- }
- func (LabelRelationship) Mixin() []ent.Mixin {
- return []ent.Mixin{
- mixins.IDMixin{},
- mixins.StatusMixin{},
- localmixin.SoftDeleteMixin{},
- }
- }
- func (LabelRelationship) Indexes() []ent.Index {
- return []ent.Index{
- index.Fields("label_id"),
- index.Fields("contact_id"),
- }
- }
- func (LabelRelationship) Edges() []ent.Edge {
- return []ent.Edge{
- edge.From("contacts", Contact.Type).
- Ref("contact_relationships").
- Unique().
- Field("contact_id").
- Required(),
- edge.From("labels", Label.Type).
- Ref("label_relationships").
- Unique().
- Field("label_id").
- Required(),
- }
- }
- func (LabelRelationship) Annotations() []schema.Annotation {
- return []schema.Annotation{entsql.Annotation{Table: "label_relationship"}}
- }
|