label_relationship.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package schema
  2. import (
  3. "entgo.io/ent"
  4. "entgo.io/ent/dialect/entsql"
  5. "entgo.io/ent/schema"
  6. "entgo.io/ent/schema/edge"
  7. "entgo.io/ent/schema/field"
  8. "entgo.io/ent/schema/index"
  9. "github.com/suyuan32/simple-admin-common/orm/ent/mixins"
  10. "wechat-api/ent/schema/localmixin"
  11. )
  12. type LabelRelationship struct {
  13. ent.Schema
  14. }
  15. func (LabelRelationship) Fields() []ent.Field {
  16. return []ent.Field{
  17. field.Uint64("label_id").Default(1).
  18. Annotations(entsql.WithComments(true)).
  19. Comment("标签 ID"),
  20. field.Uint64("contact_id").Default(1).
  21. Annotations(entsql.WithComments(true)).
  22. Comment("联系人 ID"),
  23. }
  24. }
  25. func (LabelRelationship) Mixin() []ent.Mixin {
  26. return []ent.Mixin{
  27. mixins.IDMixin{},
  28. mixins.StatusMixin{},
  29. localmixin.SoftDeleteMixin{},
  30. }
  31. }
  32. func (LabelRelationship) Indexes() []ent.Index {
  33. return []ent.Index{
  34. index.Fields("label_id"),
  35. index.Fields("contact_id"),
  36. }
  37. }
  38. func (LabelRelationship) Edges() []ent.Edge {
  39. return []ent.Edge{
  40. edge.From("contacts", Contact.Type).
  41. Ref("contact_relationships").
  42. Unique().
  43. Field("contact_id").
  44. Required(),
  45. edge.From("labels", Label.Type).
  46. Ref("label_relationships").
  47. Unique().
  48. Field("label_id").
  49. Required(),
  50. }
  51. }
  52. func (LabelRelationship) Annotations() []schema.Annotation {
  53. return []schema.Annotation{entsql.Annotation{Table: "label_relationship"}}
  54. }