message_records.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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/field"
  7. "entgo.io/ent/schema/index"
  8. "github.com/suyuan32/simple-admin-common/orm/ent/mixins"
  9. "wechat-api/ent/schema/localmixin"
  10. )
  11. type MessageRecords struct {
  12. ent.Schema
  13. }
  14. func (MessageRecords) Fields() []ent.Field {
  15. return []ent.Field{
  16. field.String("bot_wxid").
  17. Annotations(entsql.WithComments(true)).
  18. Comment("机器人微信 id"),
  19. field.Int("contact_id").
  20. Annotations(entsql.WithComments(true)).
  21. Comment("联系人 id"),
  22. field.Int("contact_type").Default(1).
  23. Annotations(entsql.WithComments(true)).
  24. Comment("类型:1好友,2群组,3企业微信联系人"),
  25. field.String("contact_wxid").Default("").
  26. Annotations(entsql.WithComments(true)).
  27. Comment("接收方微信 id"),
  28. field.Int("content_type").Default(1).
  29. Annotations(entsql.WithComments(true)).
  30. Comment("内容类型 1 文本 2 文件"),
  31. field.String("content").Default("").
  32. Annotations(entsql.WithComments(true)).
  33. Comment("发送内容"),
  34. field.String("error_detail").Default("").
  35. Annotations(entsql.WithComments(true)).
  36. Comment("异常原因"),
  37. field.Time("send_time").Optional().
  38. Annotations(entsql.WithComments(true)).
  39. Comment("发送时间"),
  40. field.Int("source_type").Default(1).
  41. Annotations(entsql.WithComments(true)).
  42. Comment("源类型 1 点发 2 群发 3 SOP"),
  43. field.Int("source_id").Default(1).
  44. Annotations(entsql.WithComments(true)).
  45. Comment("源 ID"),
  46. field.Int("sub_source_id").Default(1).
  47. Annotations(entsql.WithComments(true)).
  48. Comment("次源 ID"),
  49. }
  50. }
  51. func (MessageRecords) Mixin() []ent.Mixin {
  52. return []ent.Mixin{
  53. mixins.IDMixin{},
  54. mixins.StatusMixin{},
  55. localmixin.SoftDeleteMixin{},
  56. }
  57. }
  58. func (MessageRecords) Indexes() []ent.Index {
  59. return []ent.Index{
  60. index.Fields("source_type"),
  61. }
  62. }
  63. func (MessageRecords) Edges() []ent.Edge {
  64. return nil
  65. }
  66. func (MessageRecords) Annotations() []schema.Annotation {
  67. return []schema.Annotation{entsql.Annotation{Table: "message_records"}}
  68. }