label.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 Label struct {
  12. ent.Schema
  13. }
  14. func (Label) Fields() []ent.Field {
  15. return []ent.Field{
  16. field.Int("type").Default(1).
  17. Annotations(entsql.WithComments(true)).
  18. Comment("标签类型:1好友,2群组,3公众号,4企业微信联系人"),
  19. field.String("name").Default("").
  20. Annotations(entsql.WithComments(true)).
  21. Comment("标签名称"),
  22. field.Int("from").Default(1).
  23. Annotations(entsql.WithComments(true)).
  24. Comment("标签来源:1后台创建 2个微同步"),
  25. field.Int("mode").Default(1).
  26. Annotations(entsql.WithComments(true)).
  27. Comment("标签模式:1动态 2静态"),
  28. field.String("conditions").Optional().Default("").
  29. Annotations(entsql.WithComments(true)).
  30. Comment("标签的触达条件"),
  31. field.Uint64("organization_id").Optional().Default(1).
  32. Comment("机构 ID").
  33. Annotations(entsql.WithComments(true)),
  34. field.Uint64("ctype").Default(1).Comment("内容类型:1-微信 2-whatsapp"),
  35. }
  36. }
  37. func (Label) Mixin() []ent.Mixin {
  38. return []ent.Mixin{
  39. mixins.IDMixin{},
  40. mixins.StatusMixin{},
  41. }
  42. }
  43. func (Label) Indexes() []ent.Index {
  44. return []ent.Index{
  45. index.Fields("name", "from", "mode").Unique(),
  46. }
  47. }
  48. func (Label) Edges() []ent.Edge {
  49. return []ent.Edge{
  50. edge.To("label_relationships", LabelRelationship.Type),
  51. }
  52. }
  53. func (Label) Annotations() []schema.Annotation {
  54. return []schema.Annotation{
  55. entsql.WithComments(true),
  56. entsql.Annotation{Table: "label"},
  57. }
  58. }