usagestatisticmonth.go 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "fmt"
  5. "strings"
  6. "time"
  7. "wechat-api/ent/usagestatisticmonth"
  8. "entgo.io/ent"
  9. "entgo.io/ent/dialect/sql"
  10. )
  11. // UsageStatisticMonth is the model entity for the UsageStatisticMonth schema.
  12. type UsageStatisticMonth struct {
  13. config `json:"-"`
  14. // ID of the ent.
  15. ID uint64 `json:"id,omitempty"`
  16. // Create Time | 创建日期
  17. CreatedAt time.Time `json:"created_at,omitempty"`
  18. // Update Time | 修改日期
  19. UpdatedAt time.Time `json:"updated_at,omitempty"`
  20. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  21. Status uint8 `json:"status,omitempty"`
  22. // Delete Time | 删除日期
  23. DeletedAt time.Time `json:"deleted_at,omitempty"`
  24. // 写入年月
  25. Addtime uint64 `json:"addtime,omitempty"`
  26. // 1-微信 2-名片
  27. Type int `json:"type,omitempty"`
  28. // 微信或名片id
  29. BotID string `json:"bot_id,omitempty"`
  30. // 机构ID
  31. OrganizationID uint64 `json:"organization_id,omitempty"`
  32. // AI回复次数
  33. AiResponse uint64 `json:"ai_response,omitempty"`
  34. // SOP运行次数
  35. SopRun uint64 `json:"sop_run,omitempty"`
  36. // 好友总数
  37. TotalFriend uint64 `json:"total_friend,omitempty"`
  38. // 群总数
  39. TotalGroup uint64 `json:"total_group,omitempty"`
  40. // 账户余额(单位:分)
  41. AccountBalance uint64 `json:"account_balance,omitempty"`
  42. // 消耗token数
  43. ConsumeToken uint64 `json:"consume_token,omitempty"`
  44. // 活跃用户数
  45. ActiveUser uint64 `json:"active_user,omitempty"`
  46. // 新增用户数
  47. NewUser int64 `json:"new_user,omitempty"`
  48. selectValues sql.SelectValues
  49. }
  50. // scanValues returns the types for scanning values from sql.Rows.
  51. func (*UsageStatisticMonth) scanValues(columns []string) ([]any, error) {
  52. values := make([]any, len(columns))
  53. for i := range columns {
  54. switch columns[i] {
  55. case usagestatisticmonth.FieldID, usagestatisticmonth.FieldStatus, usagestatisticmonth.FieldAddtime, usagestatisticmonth.FieldType, usagestatisticmonth.FieldOrganizationID, usagestatisticmonth.FieldAiResponse, usagestatisticmonth.FieldSopRun, usagestatisticmonth.FieldTotalFriend, usagestatisticmonth.FieldTotalGroup, usagestatisticmonth.FieldAccountBalance, usagestatisticmonth.FieldConsumeToken, usagestatisticmonth.FieldActiveUser, usagestatisticmonth.FieldNewUser:
  56. values[i] = new(sql.NullInt64)
  57. case usagestatisticmonth.FieldBotID:
  58. values[i] = new(sql.NullString)
  59. case usagestatisticmonth.FieldCreatedAt, usagestatisticmonth.FieldUpdatedAt, usagestatisticmonth.FieldDeletedAt:
  60. values[i] = new(sql.NullTime)
  61. default:
  62. values[i] = new(sql.UnknownType)
  63. }
  64. }
  65. return values, nil
  66. }
  67. // assignValues assigns the values that were returned from sql.Rows (after scanning)
  68. // to the UsageStatisticMonth fields.
  69. func (usm *UsageStatisticMonth) assignValues(columns []string, values []any) error {
  70. if m, n := len(values), len(columns); m < n {
  71. return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
  72. }
  73. for i := range columns {
  74. switch columns[i] {
  75. case usagestatisticmonth.FieldID:
  76. value, ok := values[i].(*sql.NullInt64)
  77. if !ok {
  78. return fmt.Errorf("unexpected type %T for field id", value)
  79. }
  80. usm.ID = uint64(value.Int64)
  81. case usagestatisticmonth.FieldCreatedAt:
  82. if value, ok := values[i].(*sql.NullTime); !ok {
  83. return fmt.Errorf("unexpected type %T for field created_at", values[i])
  84. } else if value.Valid {
  85. usm.CreatedAt = value.Time
  86. }
  87. case usagestatisticmonth.FieldUpdatedAt:
  88. if value, ok := values[i].(*sql.NullTime); !ok {
  89. return fmt.Errorf("unexpected type %T for field updated_at", values[i])
  90. } else if value.Valid {
  91. usm.UpdatedAt = value.Time
  92. }
  93. case usagestatisticmonth.FieldStatus:
  94. if value, ok := values[i].(*sql.NullInt64); !ok {
  95. return fmt.Errorf("unexpected type %T for field status", values[i])
  96. } else if value.Valid {
  97. usm.Status = uint8(value.Int64)
  98. }
  99. case usagestatisticmonth.FieldDeletedAt:
  100. if value, ok := values[i].(*sql.NullTime); !ok {
  101. return fmt.Errorf("unexpected type %T for field deleted_at", values[i])
  102. } else if value.Valid {
  103. usm.DeletedAt = value.Time
  104. }
  105. case usagestatisticmonth.FieldAddtime:
  106. if value, ok := values[i].(*sql.NullInt64); !ok {
  107. return fmt.Errorf("unexpected type %T for field addtime", values[i])
  108. } else if value.Valid {
  109. usm.Addtime = uint64(value.Int64)
  110. }
  111. case usagestatisticmonth.FieldType:
  112. if value, ok := values[i].(*sql.NullInt64); !ok {
  113. return fmt.Errorf("unexpected type %T for field type", values[i])
  114. } else if value.Valid {
  115. usm.Type = int(value.Int64)
  116. }
  117. case usagestatisticmonth.FieldBotID:
  118. if value, ok := values[i].(*sql.NullString); !ok {
  119. return fmt.Errorf("unexpected type %T for field bot_id", values[i])
  120. } else if value.Valid {
  121. usm.BotID = value.String
  122. }
  123. case usagestatisticmonth.FieldOrganizationID:
  124. if value, ok := values[i].(*sql.NullInt64); !ok {
  125. return fmt.Errorf("unexpected type %T for field organization_id", values[i])
  126. } else if value.Valid {
  127. usm.OrganizationID = uint64(value.Int64)
  128. }
  129. case usagestatisticmonth.FieldAiResponse:
  130. if value, ok := values[i].(*sql.NullInt64); !ok {
  131. return fmt.Errorf("unexpected type %T for field ai_response", values[i])
  132. } else if value.Valid {
  133. usm.AiResponse = uint64(value.Int64)
  134. }
  135. case usagestatisticmonth.FieldSopRun:
  136. if value, ok := values[i].(*sql.NullInt64); !ok {
  137. return fmt.Errorf("unexpected type %T for field sop_run", values[i])
  138. } else if value.Valid {
  139. usm.SopRun = uint64(value.Int64)
  140. }
  141. case usagestatisticmonth.FieldTotalFriend:
  142. if value, ok := values[i].(*sql.NullInt64); !ok {
  143. return fmt.Errorf("unexpected type %T for field total_friend", values[i])
  144. } else if value.Valid {
  145. usm.TotalFriend = uint64(value.Int64)
  146. }
  147. case usagestatisticmonth.FieldTotalGroup:
  148. if value, ok := values[i].(*sql.NullInt64); !ok {
  149. return fmt.Errorf("unexpected type %T for field total_group", values[i])
  150. } else if value.Valid {
  151. usm.TotalGroup = uint64(value.Int64)
  152. }
  153. case usagestatisticmonth.FieldAccountBalance:
  154. if value, ok := values[i].(*sql.NullInt64); !ok {
  155. return fmt.Errorf("unexpected type %T for field account_balance", values[i])
  156. } else if value.Valid {
  157. usm.AccountBalance = uint64(value.Int64)
  158. }
  159. case usagestatisticmonth.FieldConsumeToken:
  160. if value, ok := values[i].(*sql.NullInt64); !ok {
  161. return fmt.Errorf("unexpected type %T for field consume_token", values[i])
  162. } else if value.Valid {
  163. usm.ConsumeToken = uint64(value.Int64)
  164. }
  165. case usagestatisticmonth.FieldActiveUser:
  166. if value, ok := values[i].(*sql.NullInt64); !ok {
  167. return fmt.Errorf("unexpected type %T for field active_user", values[i])
  168. } else if value.Valid {
  169. usm.ActiveUser = uint64(value.Int64)
  170. }
  171. case usagestatisticmonth.FieldNewUser:
  172. if value, ok := values[i].(*sql.NullInt64); !ok {
  173. return fmt.Errorf("unexpected type %T for field new_user", values[i])
  174. } else if value.Valid {
  175. usm.NewUser = value.Int64
  176. }
  177. default:
  178. usm.selectValues.Set(columns[i], values[i])
  179. }
  180. }
  181. return nil
  182. }
  183. // Value returns the ent.Value that was dynamically selected and assigned to the UsageStatisticMonth.
  184. // This includes values selected through modifiers, order, etc.
  185. func (usm *UsageStatisticMonth) Value(name string) (ent.Value, error) {
  186. return usm.selectValues.Get(name)
  187. }
  188. // Update returns a builder for updating this UsageStatisticMonth.
  189. // Note that you need to call UsageStatisticMonth.Unwrap() before calling this method if this UsageStatisticMonth
  190. // was returned from a transaction, and the transaction was committed or rolled back.
  191. func (usm *UsageStatisticMonth) Update() *UsageStatisticMonthUpdateOne {
  192. return NewUsageStatisticMonthClient(usm.config).UpdateOne(usm)
  193. }
  194. // Unwrap unwraps the UsageStatisticMonth entity that was returned from a transaction after it was closed,
  195. // so that all future queries will be executed through the driver which created the transaction.
  196. func (usm *UsageStatisticMonth) Unwrap() *UsageStatisticMonth {
  197. _tx, ok := usm.config.driver.(*txDriver)
  198. if !ok {
  199. panic("ent: UsageStatisticMonth is not a transactional entity")
  200. }
  201. usm.config.driver = _tx.drv
  202. return usm
  203. }
  204. // String implements the fmt.Stringer.
  205. func (usm *UsageStatisticMonth) String() string {
  206. var builder strings.Builder
  207. builder.WriteString("UsageStatisticMonth(")
  208. builder.WriteString(fmt.Sprintf("id=%v, ", usm.ID))
  209. builder.WriteString("created_at=")
  210. builder.WriteString(usm.CreatedAt.Format(time.ANSIC))
  211. builder.WriteString(", ")
  212. builder.WriteString("updated_at=")
  213. builder.WriteString(usm.UpdatedAt.Format(time.ANSIC))
  214. builder.WriteString(", ")
  215. builder.WriteString("status=")
  216. builder.WriteString(fmt.Sprintf("%v", usm.Status))
  217. builder.WriteString(", ")
  218. builder.WriteString("deleted_at=")
  219. builder.WriteString(usm.DeletedAt.Format(time.ANSIC))
  220. builder.WriteString(", ")
  221. builder.WriteString("addtime=")
  222. builder.WriteString(fmt.Sprintf("%v", usm.Addtime))
  223. builder.WriteString(", ")
  224. builder.WriteString("type=")
  225. builder.WriteString(fmt.Sprintf("%v", usm.Type))
  226. builder.WriteString(", ")
  227. builder.WriteString("bot_id=")
  228. builder.WriteString(usm.BotID)
  229. builder.WriteString(", ")
  230. builder.WriteString("organization_id=")
  231. builder.WriteString(fmt.Sprintf("%v", usm.OrganizationID))
  232. builder.WriteString(", ")
  233. builder.WriteString("ai_response=")
  234. builder.WriteString(fmt.Sprintf("%v", usm.AiResponse))
  235. builder.WriteString(", ")
  236. builder.WriteString("sop_run=")
  237. builder.WriteString(fmt.Sprintf("%v", usm.SopRun))
  238. builder.WriteString(", ")
  239. builder.WriteString("total_friend=")
  240. builder.WriteString(fmt.Sprintf("%v", usm.TotalFriend))
  241. builder.WriteString(", ")
  242. builder.WriteString("total_group=")
  243. builder.WriteString(fmt.Sprintf("%v", usm.TotalGroup))
  244. builder.WriteString(", ")
  245. builder.WriteString("account_balance=")
  246. builder.WriteString(fmt.Sprintf("%v", usm.AccountBalance))
  247. builder.WriteString(", ")
  248. builder.WriteString("consume_token=")
  249. builder.WriteString(fmt.Sprintf("%v", usm.ConsumeToken))
  250. builder.WriteString(", ")
  251. builder.WriteString("active_user=")
  252. builder.WriteString(fmt.Sprintf("%v", usm.ActiveUser))
  253. builder.WriteString(", ")
  254. builder.WriteString("new_user=")
  255. builder.WriteString(fmt.Sprintf("%v", usm.NewUser))
  256. builder.WriteByte(')')
  257. return builder.String()
  258. }
  259. // UsageStatisticMonths is a parsable slice of UsageStatisticMonth.
  260. type UsageStatisticMonths []*UsageStatisticMonth