label_relationship.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. )
  11. type LabelRelationship struct {
  12. ent.Schema
  13. }
  14. func (LabelRelationship) Fields() []ent.Field {
  15. return []ent.Field{
  16. field.Uint64("label_id").Default(1).
  17. Annotations(entsql.WithComments(true)).
  18. Comment("标签 ID"),
  19. field.Uint64("contact_id").Default(1).
  20. Annotations(entsql.WithComments(true)).
  21. Comment("联系人 ID"),
  22. field.Uint64("organization_id").Optional().Default(1).
  23. Comment("机构 ID").
  24. Annotations(entsql.WithComments(true)),
  25. field.Uint64("ctype").Default(1).Comment("内容类型:1-微信 2-whatsapp"),
  26. }
  27. }
  28. func (LabelRelationship) Mixin() []ent.Mixin {
  29. return []ent.Mixin{
  30. mixins.IDMixin{},
  31. mixins.StatusMixin{},
  32. }
  33. }
  34. func (LabelRelationship) Indexes() []ent.Index {
  35. return []ent.Index{
  36. index.Fields("label_id"),
  37. index.Fields("contact_id"),
  38. }
  39. }
  40. func (LabelRelationship) Edges() []ent.Edge {
  41. return []ent.Edge{
  42. edge.From("contacts", Contact.Type).
  43. Ref("contact_relationships").
  44. Unique().
  45. Field("contact_id").
  46. Required(),
  47. edge.From("labels", Label.Type).
  48. Ref("label_relationships").
  49. Unique().
  50. Field("label_id").
  51. Required(),
  52. }
  53. }
  54. func (LabelRelationship) Annotations() []schema.Annotation {
  55. return []schema.Annotation{
  56. entsql.WithComments(true),
  57. entsql.Annotation{Table: "label_relationship"},
  58. }
  59. }