usage_statistic_month.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package schema
  2. import (
  3. "wechat-api/ent/schema/localmixin"
  4. "entgo.io/ent"
  5. "entgo.io/ent/dialect/entsql"
  6. "entgo.io/ent/schema"
  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 UsageStatisticMonth struct {
  12. ent.Schema
  13. }
  14. func (UsageStatisticMonth) Fields() []ent.Field {
  15. return []ent.Field{
  16. field.Uint64("addtime").Comment("写入年月"),
  17. field.Int("type").Comment("1-微信 2-名片"),
  18. field.String("bot_id").Comment("微信或名片id"),
  19. field.Uint64("organization_id").Optional().Comment("机构ID"),
  20. field.Uint64("ai_response").Comment("AI回复次数"),
  21. field.Uint64("sop_run").Comment("SOP运行次数"),
  22. field.Uint64("total_friend").Comment("好友总数"),
  23. field.Uint64("total_group").Comment("群总数"),
  24. field.Uint64("account_balance").Comment("账户余额(单位:分)"),
  25. field.Uint64("consume_token").Comment("消耗token数"),
  26. field.Uint64("active_user").Comment("活跃用户数"),
  27. field.Int64("new_user").Comment("新增用户数"),
  28. }
  29. }
  30. func (UsageStatisticMonth) Mixin() []ent.Mixin {
  31. return []ent.Mixin{
  32. mixins.IDMixin{},
  33. mixins.StatusMixin{},
  34. localmixin.SoftDeleteMixin{},
  35. }
  36. }
  37. func (UsageStatisticMonth) Indexes() []ent.Index {
  38. return []ent.Index{
  39. index.Fields("addtime"),
  40. index.Fields("bot_id"),
  41. }
  42. }
  43. func (UsageStatisticMonth) Edges() []ent.Edge {
  44. return nil
  45. }
  46. func (UsageStatisticMonth) Annotations() []schema.Annotation {
  47. return []schema.Annotation{
  48. entsql.WithComments(true),
  49. entsql.Annotation{Table: "usage_statistic_month"},
  50. }
  51. }