edb_data_base.go 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package mgodb
  2. import (
  3. "context"
  4. "eta/eta_forum_admin/utils"
  5. "go.mongodb.org/mongo-driver/bson"
  6. "go.mongodb.org/mongo-driver/mongo/options"
  7. )
  8. type EdbDataBase struct {
  9. EdbInfoId int `bson:"edb_info_id"`
  10. EdbCode string `bson:"edb_code"`
  11. DataTime string `bson:"data_time"`
  12. Value string `bson:"value"`
  13. Status int `bson:"status"`
  14. CreateTime string `bson:"create_time"`
  15. ModifyTime string `bson:"modify_time"`
  16. DataTimestamp int64 `bson:"data_timestamp"`
  17. }
  18. type EdbInfoSearchData struct {
  19. DataTime string `description:"数据日期" bson:"data_time"`
  20. Value float64 `description:"数据" bson:"value"`
  21. EdbCode string `description:"指标编码" bson:"edb_code"`
  22. }
  23. func GetEdbDataBaseByEdbInfoId(edbInfoId int) (items []*EdbDataBase, err error) {
  24. findOptions := options.Find()
  25. db := NewMgo(utils.MONGODB_COMMUNITY, "edb_data_base", MgoClient)
  26. filter := bson.D{{"edb_info_id", edbInfoId}}
  27. ctx := context.TODO()
  28. cur, err := db.Find(filter, findOptions)
  29. if err != nil {
  30. return
  31. }
  32. // Close the cursor once finished
  33. defer cur.Close(ctx)
  34. for cur.Next(ctx) {
  35. // create a value into which the single document can be decoded
  36. var elem EdbDataBase
  37. err = cur.Decode(&elem)
  38. if err != nil {
  39. return
  40. }
  41. items = append(items, &elem)
  42. }
  43. if err = cur.Err(); err != nil {
  44. return
  45. }
  46. return
  47. }
  48. // GetEdbDataList 获取指标的数据(日期正序返回)
  49. func GetEdbDataList(endInfoId int, startDate, endDate string) (list []*EdbDataBase, err error) {
  50. findOptions := options.Find()
  51. findOptions.SetSort(bson.D{{"data_time", 1}})
  52. db := NewMgo(utils.MONGODB_COMMUNITY, "edb_data_base", MgoClient)
  53. filter := bson.D{{"edb_info_id", endInfoId}}
  54. if startDate != "" {
  55. filter = append(filter, bson.E{"data_time", bson.M{"$gte": startDate}})
  56. }
  57. if endDate != "" {
  58. filter = append(filter, bson.E{"data_time", bson.M{"$lte": endDate}})
  59. }
  60. ctx := context.TODO()
  61. cur, err := db.Find(filter, findOptions)
  62. if err != nil {
  63. return
  64. }
  65. // Close the cursor once finished
  66. defer cur.Close(ctx)
  67. for cur.Next(ctx) {
  68. // create a value into which the single document can be decoded
  69. var elem EdbDataBase
  70. err = cur.Decode(&elem)
  71. if err != nil {
  72. return
  73. }
  74. list = append(list, &elem)
  75. }
  76. if err = cur.Err(); err != nil {
  77. return
  78. }
  79. return
  80. }