compute_statistic.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516
  1. package crontask
  2. import (
  3. "strconv"
  4. "time"
  5. "wechat-api/ent"
  6. "wechat-api/ent/contact"
  7. "wechat-api/ent/custom_types"
  8. "wechat-api/ent/labelrelationship"
  9. "wechat-api/ent/messagerecords"
  10. "wechat-api/ent/usagedetail"
  11. "wechat-api/ent/usagestatisticday"
  12. "wechat-api/ent/usagestatistichour"
  13. "wechat-api/ent/usagestatisticmonth"
  14. "wechat-api/ent/wx"
  15. )
  16. func (l *CronTask) computeStatistic() {
  17. startTime := time.Now()
  18. // 获取所有机器人信息
  19. wxbots, err := l.svcCtx.DB.Wx.Query().Select(wx.FieldWxid, wx.FieldID, wx.FieldOrganizationID).All(l.ctx)
  20. if err != nil {
  21. l.Errorf("fetch wxids error:%v\n", err)
  22. return
  23. }
  24. wxbotsSet := make(map[uint64][]*ent.Wx)
  25. for _, bot := range wxbots {
  26. wxbotsSet[bot.OrganizationID] = append(wxbotsSet[bot.OrganizationID], bot)
  27. }
  28. LabelsCountSet := make(map[uint64][]custom_types.LabelDist)
  29. /*
  30. 计算本小时的数据
  31. 1. 查询出上小时里所有 usagedetail 内容
  32. 2. 挨个遍历他的 bot_id ,再查询他的 bot_id 相关的参数
  33. 3. 遍历的时候可能有重复,所以要先检查是否生成了数据,如果有就忽略,没有再生成
  34. ----------------------------------------------------------------------------------------------------------
  35. */
  36. // 获取当前时间
  37. now := time.Now()
  38. // 获取本小时的第一分钟
  39. currentHour := time.Date(now.Year(), now.Month(), now.Day(), now.Hour(), 0, 0, 0, now.Location())
  40. currentHourInt, _ := strconv.Atoi(currentHour.Format("2006010215"))
  41. // 上一个小时的起始时间
  42. lastHour := currentHour.Add(-time.Hour * 1)
  43. lastHourInt, _ := strconv.Atoi(lastHour.Format("2006010215"))
  44. lc := []custom_types.LabelDist{}
  45. var allHourAiResponseInt, allHourSopRunInt, allHourFriendCountInt, allHourGroupCountInt, allHourAccountBalanceInt, allHourConsumeTokenInt, allHourActiveUserInt, allHourNewUserInt int
  46. for orgID, wxinfos := range wxbotsSet {
  47. var orgAiResponseInt, orgSopRunInt, orgFriendCountInt, orgGroupCountInt, orgAccountBalanceInt, orgConsumeTokenInt, orgActiveUserInt, orgNewUserInt int
  48. for _, wxinfo := range wxinfos {
  49. l.Logger.Infof("开始计算小时数据:%d\n", currentHourInt)
  50. // 先判断该账号是否已经统计了小时数据,如果已经统计了,就不需要再统计了
  51. var aiResponseInt, sopRunInt, friendCountInt, groupCountInt, accountBalanceInt, consumeTokenInt, activeUserInt, newUserInt int
  52. hourDataCount, _ := l.svcCtx.DB.UsageStatisticHour.Query().Where(
  53. usagestatistichour.Type(1),
  54. usagestatistichour.BotID(wxinfo.Wxid),
  55. usagestatistichour.Addtime(uint64(currentHourInt)),
  56. ).Count(l.ctx)
  57. if hourDataCount > 0 {
  58. continue
  59. }
  60. // AI回复包括:SOP次数+AI次数
  61. // SOP次数:content 非空,source_type = 3 或 4,sub_source_id = 0
  62. // AI次数:app = 1 或 3
  63. sopresp, _ := l.svcCtx.DB.MessageRecords.Query().Where(
  64. messagerecords.SubSourceID(0),
  65. messagerecords.SourceTypeIn(3, 4),
  66. messagerecords.BotWxid(wxinfo.Wxid),
  67. messagerecords.CreatedAtGTE(lastHour),
  68. messagerecords.CreatedAtLT(currentHour),
  69. ).Count(l.ctx)
  70. airesp, _ := l.svcCtx.DB.UsageDetail.Query().Where(
  71. usagedetail.AppIn(1, 3),
  72. usagedetail.BotID(wxinfo.Wxid),
  73. usagedetail.CreatedAtGTE(lastHour),
  74. usagedetail.CreatedAtLT(currentHour),
  75. ).Count(l.ctx)
  76. aiResponseInt = sopresp + airesp
  77. orgAiResponseInt += aiResponseInt
  78. allHourAiResponseInt += aiResponseInt
  79. // SOP执行次数:SOP阶段和节点的执行次数。
  80. sopRunInt, _ = l.svcCtx.DB.MessageRecords.Query().Where(
  81. messagerecords.BotWxid(wxinfo.Wxid),
  82. messagerecords.SubSourceIDEQ(0),
  83. messagerecords.SourceTypeIn(3, 4),
  84. messagerecords.BotWxid(wxinfo.Wxid),
  85. messagerecords.CreatedAtGTE(lastHour),
  86. messagerecords.CreatedAtLT(currentHour),
  87. ).Count(l.ctx)
  88. orgSopRunInt += sopRunInt
  89. allHourSopRunInt += sopRunInt
  90. // 好友总数:contact 表中 type=1
  91. friendCountInt, _ = l.svcCtx.DB.Contact.Query().Where(
  92. contact.Type(1),
  93. contact.WxWxid(wxinfo.Wxid),
  94. ).Count(l.ctx)
  95. orgFriendCountInt += friendCountInt
  96. allHourFriendCountInt += friendCountInt
  97. // 群总数:contact 表中 type=2
  98. groupCountInt, _ = l.svcCtx.DB.Contact.Query().Where(
  99. contact.Type(2),
  100. contact.WxWxid(wxinfo.Wxid),
  101. ).Count(l.ctx)
  102. orgGroupCountInt += groupCountInt
  103. allHourGroupCountInt += groupCountInt
  104. // 消耗Token数:usage_detail 表
  105. consumeTokenInt, _ = l.svcCtx.DB.UsageDetail.Query().Where(
  106. usagedetail.TypeEQ(1),
  107. usagedetail.BotID(wxinfo.Wxid),
  108. usagedetail.CreatedAtGTE(lastHour),
  109. usagedetail.CreatedAtLT(currentHour),
  110. ).Aggregate(ent.Sum("total_tokens")).Int(l.ctx)
  111. orgConsumeTokenInt += consumeTokenInt
  112. allHourConsumeTokenInt += consumeTokenInt
  113. // 账户余额
  114. accountBalanceInt = 0
  115. orgAccountBalanceInt = 0
  116. allHourAccountBalanceInt = 0
  117. // 活跃好友:usage_detail 表 type = 1
  118. activeUserInt, _ = l.svcCtx.DB.UsageDetail.Query().Where(
  119. usagedetail.Type(1),
  120. usagedetail.BotID(wxinfo.Wxid),
  121. usagedetail.CreatedAtGTE(lastHour),
  122. usagedetail.CreatedAtLT(currentHour),
  123. ).GroupBy(usagedetail.FieldReceiverID).Int(l.ctx)
  124. orgActiveUserInt += activeUserInt
  125. allHourActiveUserInt += activeUserInt
  126. lastHourData, _ := l.svcCtx.DB.UsageStatisticHour.Query().Where(
  127. usagestatistichour.AddtimeEQ(uint64(lastHourInt)),
  128. usagestatistichour.Type(1),
  129. usagestatistichour.BotID(wxinfo.Wxid),
  130. ).First(l.ctx)
  131. if lastHourData == nil {
  132. newUserInt = friendCountInt
  133. } else {
  134. newUserInt = int(lastHourData.TotalFriend) - friendCountInt
  135. }
  136. orgNewUserInt += newUserInt
  137. allHourNewUserInt += newUserInt
  138. _, err := l.svcCtx.DB.UsageStatisticHour.Create().
  139. SetType(1).
  140. SetBotID(wxinfo.Wxid).
  141. SetOrganizationID(wxinfo.OrganizationID).
  142. SetAiResponse(uint64(aiResponseInt)).
  143. SetSopRun(uint64(sopRunInt)).
  144. SetTotalFriend(uint64(friendCountInt)).
  145. SetTotalGroup(uint64(groupCountInt)).
  146. SetAccountBalance(uint64(accountBalanceInt)).
  147. SetConsumeToken(uint64(consumeTokenInt)).
  148. SetActiveUser(uint64(activeUserInt)).
  149. SetNewUser(int64(newUserInt)).
  150. SetAddtime(uint64(currentHourInt)).
  151. SetLabelDist(lc).
  152. Save(l.ctx)
  153. l.Errorf("save hour data error:%v \n", err)
  154. }
  155. // 先判断该租户是否已经统计了小时数据,如果已经统计了,就不需要再统计了
  156. hourDataCount, _ := l.svcCtx.DB.UsageStatisticHour.Query().Where(
  157. usagestatistichour.Type(1),
  158. usagestatistichour.OrganizationID(orgID),
  159. usagestatistichour.BotIDIsNil(),
  160. usagestatistichour.Addtime(uint64(currentHourInt)),
  161. ).Count(l.ctx)
  162. if hourDataCount > 0 {
  163. continue
  164. }
  165. LabelsCount := []custom_types.LabelDist{}
  166. err := l.svcCtx.DB.LabelRelationship.Query().Where(labelrelationship.OrganizationIDEQ(orgID), labelrelationship.DeletedAtIsNil()).GroupBy(labelrelationship.FieldLabelID).Aggregate(ent.Count()).Scan(l.ctx, &LabelsCount)
  167. l.Errorf("save hour data error:%v \n", err)
  168. LabelsCountSet[orgID] = LabelsCount
  169. _, err = l.svcCtx.DB.UsageStatisticHour.Create().
  170. SetType(1).
  171. SetOrganizationID(orgID).
  172. SetAiResponse(uint64(orgAiResponseInt)).
  173. SetSopRun(uint64(orgSopRunInt)).
  174. SetTotalFriend(uint64(orgFriendCountInt)).
  175. SetTotalGroup(uint64(orgGroupCountInt)).
  176. SetAccountBalance(uint64(orgAccountBalanceInt)).
  177. SetConsumeToken(uint64(orgConsumeTokenInt)).
  178. SetActiveUser(uint64(orgActiveUserInt)).
  179. SetNewUser(int64(orgNewUserInt)).
  180. SetAddtime(uint64(currentHourInt)).
  181. SetNotNilLabelDist(LabelsCount).
  182. Save(l.ctx)
  183. l.Errorf("save hour data error:%v \n", err)
  184. }
  185. _, err = l.svcCtx.DB.UsageStatisticHour.Create().
  186. SetType(1).
  187. SetOrganizationID(0).
  188. SetAiResponse(uint64(allHourAiResponseInt)).
  189. SetSopRun(uint64(allHourSopRunInt)).
  190. SetTotalFriend(uint64(allHourFriendCountInt)).
  191. SetTotalGroup(uint64(allHourGroupCountInt)).
  192. SetAccountBalance(uint64(allHourAccountBalanceInt)).
  193. SetConsumeToken(uint64(allHourConsumeTokenInt)).
  194. SetActiveUser(uint64(allHourActiveUserInt)).
  195. SetNewUser(int64(allHourNewUserInt)).
  196. SetAddtime(uint64(currentHourInt)).
  197. SetLabelDist(lc).
  198. Save(l.ctx)
  199. l.Errorf("save hour data error:%v \n", err)
  200. /*
  201. 计算日数据
  202. ----------------------------------------------------------------------------------------------------------
  203. */
  204. dayStr := time.Now().Format("20060102")
  205. day, _ := strconv.Atoi(dayStr)
  206. // 获取昨天的第一小时
  207. yesterday := now.AddDate(0, 0, -1)
  208. yesterdayFirstHour := time.Date(yesterday.Year(), yesterday.Month(), now.Day(), 0, 0, 0, 0, now.Location())
  209. yesterdayFirstHourInt, _ := strconv.Atoi(yesterdayFirstHour.Format("20060102"))
  210. // 获取昨天的最后一小时
  211. yesterdayLastHour := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, now.Location())
  212. yesterdayLastHourInt, _ := strconv.Atoi(yesterdayLastHour.Format("20060102"))
  213. var allDayAiResponseInt, allDaySopRunInt, allDayFriendCountInt, allDayGroupCountInt, allDayAccountBalanceInt, allDayConsumeTokenInt, allDayActiveUserInt uint64
  214. var allDayNewUserInt int64
  215. for orgID, wxinfos := range wxbotsSet {
  216. var orgAiResponseInt, orgSopRunInt, orgFriendCountInt, orgGroupCountInt, orgAccountBalanceInt, orgConsumeTokenInt, orgActiveUserInt uint64
  217. var orgNewUserInt int64
  218. for _, wxinfo := range wxinfos {
  219. l.Logger.Infof("开始计算日数据:%d\n", day)
  220. // 先判断该账号是否已经统计了日数据,如果已经统计了,就不需要再统计了
  221. dayDataCount, _ := l.svcCtx.DB.UsageStatisticDay.Query().Where(
  222. usagestatisticday.Type(1),
  223. usagestatisticday.BotID(wxinfo.Wxid),
  224. usagestatisticday.Addtime(uint64(day)),
  225. ).Count(l.ctx)
  226. // 如果添加过了就略过
  227. if dayDataCount > 0 {
  228. continue
  229. }
  230. hourDataBatch, _ := l.svcCtx.DB.UsageStatisticHour.Query().Where(
  231. usagestatistichour.Type(1),
  232. usagestatistichour.BotID(wxinfo.Wxid),
  233. usagestatistichour.AddtimeGTE(uint64(yesterdayFirstHourInt)),
  234. usagestatistichour.AddtimeLT(uint64(yesterdayLastHourInt)),
  235. ).All(l.ctx)
  236. var aiResponse, sopRun, totalFriend, totalGroup, accountBalance, consumeToken, activeUser uint64
  237. var newUser int64
  238. for _, hourData := range hourDataBatch {
  239. aiResponse += hourData.AiResponse
  240. sopRun += hourData.SopRun
  241. totalFriend += hourData.TotalFriend
  242. totalGroup += hourData.TotalGroup
  243. accountBalance += hourData.AccountBalance
  244. consumeToken += hourData.ConsumeToken
  245. activeUser += hourData.ActiveUser
  246. newUser += hourData.NewUser
  247. }
  248. orgAiResponseInt += aiResponse
  249. orgSopRunInt += sopRun
  250. orgFriendCountInt += totalFriend
  251. orgGroupCountInt += totalGroup
  252. orgAccountBalanceInt += accountBalance
  253. orgConsumeTokenInt += consumeToken
  254. orgActiveUserInt += activeUser
  255. orgNewUserInt += newUser
  256. allDayAiResponseInt += aiResponse
  257. allDaySopRunInt += sopRun
  258. allDayFriendCountInt += totalFriend
  259. allDayGroupCountInt += totalGroup
  260. allDayAccountBalanceInt += accountBalance
  261. allDayConsumeTokenInt += consumeToken
  262. allDayActiveUserInt += activeUser
  263. allDayNewUserInt += newUser
  264. _, err := l.svcCtx.DB.UsageStatisticDay.Create().
  265. SetAddtime(uint64(day)).
  266. SetType(1).
  267. SetBotID(wxinfo.Wxid).
  268. SetOrganizationID(wxinfo.OrganizationID).
  269. SetAiResponse(aiResponse).
  270. SetSopRun(sopRun).
  271. SetTotalFriend(totalFriend).
  272. SetTotalGroup(totalGroup).
  273. SetAccountBalance(accountBalance).
  274. SetConsumeToken(consumeToken).
  275. SetActiveUser(activeUser).
  276. SetNewUser(newUser).
  277. SetLabelDist(lc).
  278. Save(l.ctx)
  279. if err != nil {
  280. l.Errorf("create day data error:%v \n", err)
  281. continue
  282. }
  283. }
  284. // 先判断该租户是否已经统计了日数据,如果已经统计了,就不需要再统计了
  285. dayDataCount, _ := l.svcCtx.DB.UsageStatisticDay.Query().Where(
  286. usagestatisticday.Type(1),
  287. usagestatisticday.OrganizationID(orgID),
  288. usagestatisticday.BotIDIsNil(),
  289. usagestatisticday.Addtime(uint64(day)),
  290. ).Count(l.ctx)
  291. // 如果添加过了就略过
  292. if dayDataCount > 0 {
  293. continue
  294. }
  295. _, err := l.svcCtx.DB.UsageStatisticDay.Create().
  296. SetAddtime(uint64(day)).
  297. SetType(1).
  298. SetOrganizationID(orgID).
  299. SetAiResponse(orgAiResponseInt).
  300. SetSopRun(orgSopRunInt).
  301. SetTotalFriend(orgFriendCountInt).
  302. SetTotalGroup(orgGroupCountInt).
  303. SetAccountBalance(orgAccountBalanceInt).
  304. SetConsumeToken(orgConsumeTokenInt).
  305. SetActiveUser(orgActiveUserInt).
  306. SetNewUser(orgNewUserInt).
  307. SetNotNilLabelDist(LabelsCountSet[orgID]).
  308. Save(l.ctx)
  309. if err != nil {
  310. l.Errorf("create day data error:%v \n", err)
  311. continue
  312. }
  313. }
  314. _, err = l.svcCtx.DB.UsageStatisticDay.Create().
  315. SetAddtime(uint64(day)).
  316. SetType(1).
  317. SetOrganizationID(0).
  318. SetAiResponse(allDayAiResponseInt).
  319. SetSopRun(allDaySopRunInt).
  320. SetTotalFriend(allDayFriendCountInt).
  321. SetTotalGroup(allDayGroupCountInt).
  322. SetAccountBalance(allDayAccountBalanceInt).
  323. SetConsumeToken(allDayConsumeTokenInt).
  324. SetActiveUser(allDayActiveUserInt).
  325. SetNewUser(allDayNewUserInt).
  326. SetLabelDist(lc).
  327. Save(l.ctx)
  328. if err != nil {
  329. l.Errorf("create day data error:%v \n", err)
  330. }
  331. /*
  332. 查看月表数据是否已经完成
  333. 1. 查询出上月里所有 usagedetail 内容
  334. 2. 挨个遍历他的 bot_id ,再查询他的 bot_id 相关的参数
  335. ----------------------------------------------------------------------------------------------------------
  336. */
  337. monthStr := time.Now().Format("200601")
  338. month, _ := strconv.Atoi(monthStr)
  339. var allMonthAiResponseInt, allMonthSopRunInt, allMonthFriendCountInt, allMonthGroupCountInt, allMonthAccountBalanceInt, allMonthConsumeTokenInt, allMonthActiveUserInt uint64
  340. var allMonthNewUserInt int64
  341. for orgID, wxinfos := range wxbotsSet {
  342. var orgAiResponseInt, orgSopRunInt, orgFriendCountInt, orgGroupCountInt, orgAccountBalanceInt, orgConsumeTokenInt, orgActiveUserInt uint64
  343. var orgNewUserInt int64
  344. for _, wxinfo := range wxinfos {
  345. l.Logger.Infof("开始计算月数据:%d\n", month)
  346. // 获取上月的第一天
  347. monthFirstDay := time.Date(now.Year(), now.Month()-1, 1, 0, 0, 0, 0, now.Location())
  348. monthFirstDayInt, _ := strconv.Atoi(monthFirstDay.Format("20060102"))
  349. // 获取上月的最后一天
  350. monthLastDay := time.Date(now.Year(), now.Month(), 1, 0, 0, 0, 0, now.Location())
  351. monthLastDayInt, _ := strconv.Atoi(monthLastDay.Format("20060102"))
  352. // 先判断该账号是否已经统计了月数据,如果已经统计了,就不需要再统计了
  353. monthDataCount, _ := l.svcCtx.DB.UsageStatisticMonth.Query().Where(
  354. usagestatisticmonth.Type(1),
  355. usagestatisticmonth.BotID(wxinfo.Wxid),
  356. usagestatisticmonth.Addtime(uint64(month)),
  357. ).Count(l.ctx)
  358. // 如果添加过了就略过
  359. if monthDataCount > 0 {
  360. continue
  361. }
  362. dayDataBatch, _ := l.svcCtx.DB.UsageStatisticDay.Query().Where(
  363. usagestatisticday.Type(1),
  364. usagestatisticday.BotID(wxinfo.Wxid),
  365. usagestatisticday.AddtimeGTE(uint64(monthFirstDayInt)),
  366. usagestatisticday.AddtimeLT(uint64(monthLastDayInt)),
  367. ).All(l.ctx)
  368. var aiResponse, sopRun, totalFriend, totalGroup, accountBalance, consumeToken, activeUser uint64
  369. var newUser int64
  370. for _, dayData := range dayDataBatch {
  371. aiResponse += dayData.AiResponse
  372. sopRun += dayData.SopRun
  373. totalFriend += dayData.TotalFriend
  374. totalGroup += dayData.TotalGroup
  375. accountBalance += dayData.AccountBalance
  376. consumeToken += dayData.ConsumeToken
  377. activeUser += dayData.ActiveUser
  378. newUser += dayData.NewUser
  379. }
  380. orgAiResponseInt += aiResponse
  381. orgSopRunInt += sopRun
  382. orgFriendCountInt += totalFriend
  383. orgGroupCountInt += totalGroup
  384. orgAccountBalanceInt += accountBalance
  385. orgConsumeTokenInt += consumeToken
  386. orgActiveUserInt += activeUser
  387. orgNewUserInt += newUser
  388. allMonthAiResponseInt += aiResponse
  389. allMonthSopRunInt += sopRun
  390. allMonthFriendCountInt += totalFriend
  391. allMonthGroupCountInt += totalGroup
  392. allMonthAccountBalanceInt += accountBalance
  393. allMonthConsumeTokenInt += consumeToken
  394. allMonthActiveUserInt += activeUser
  395. allMonthNewUserInt += newUser
  396. _, err := l.svcCtx.DB.UsageStatisticMonth.Create().
  397. SetAddtime(uint64(month)).
  398. SetType(1).
  399. SetBotID(wxinfo.Wxid).
  400. SetOrganizationID(wxinfo.OrganizationID).
  401. SetAiResponse(aiResponse).
  402. SetSopRun(sopRun).
  403. SetTotalFriend(totalFriend).
  404. SetTotalGroup(totalGroup).
  405. SetAccountBalance(accountBalance).
  406. SetConsumeToken(consumeToken).
  407. SetActiveUser(activeUser).
  408. SetNewUser(newUser).
  409. SetLabelDist(lc).
  410. Save(l.ctx)
  411. if err != nil {
  412. l.Errorf("create month data error:%v \n", err)
  413. continue
  414. }
  415. }
  416. // 先判断该租户是否已经统计了月数据,如果已经统计了,就不需要再统计了
  417. monthDataCount, _ := l.svcCtx.DB.UsageStatisticMonth.Query().Where(
  418. usagestatisticmonth.Type(1),
  419. usagestatisticmonth.OrganizationID(orgID),
  420. usagestatisticmonth.BotIDIsNil(),
  421. usagestatisticmonth.Addtime(uint64(month)),
  422. ).Count(l.ctx)
  423. // 如果添加过了就略过
  424. if monthDataCount > 0 {
  425. continue
  426. }
  427. _, err := l.svcCtx.DB.UsageStatisticMonth.Create().
  428. SetAddtime(uint64(month)).
  429. SetType(1).
  430. SetOrganizationID(orgID).
  431. SetAiResponse(orgAiResponseInt).
  432. SetSopRun(orgSopRunInt).
  433. SetTotalFriend(orgFriendCountInt).
  434. SetTotalGroup(orgGroupCountInt).
  435. SetAccountBalance(orgAccountBalanceInt).
  436. SetConsumeToken(orgConsumeTokenInt).
  437. SetActiveUser(orgActiveUserInt).
  438. SetNewUser(orgNewUserInt).
  439. SetNotNilLabelDist(LabelsCountSet[orgID]).
  440. Save(l.ctx)
  441. if err != nil {
  442. l.Errorf("create month data error:%v \n", err)
  443. continue
  444. }
  445. }
  446. _, err = l.svcCtx.DB.UsageStatisticMonth.Create().
  447. SetAddtime(uint64(month)).
  448. SetType(1).
  449. SetOrganizationID(0).
  450. SetAiResponse(allMonthAiResponseInt).
  451. SetSopRun(allMonthSopRunInt).
  452. SetTotalFriend(allMonthFriendCountInt).
  453. SetTotalGroup(allMonthGroupCountInt).
  454. SetAccountBalance(allMonthAccountBalanceInt).
  455. SetConsumeToken(allMonthConsumeTokenInt).
  456. SetActiveUser(allMonthActiveUserInt).
  457. SetNewUser(allMonthNewUserInt).
  458. SetNotNilLabelDist(lc).
  459. Save(l.ctx)
  460. if err != nil {
  461. l.Errorf("create month data error:%v \n", err)
  462. }
  463. finishTime := time.Now()
  464. l.Logger.Infof("This process cost %v", finishTime.Sub(startTime).String())
  465. return
  466. }