package mgodb import ( "context" "eta/eta_forum_admin/utils" "go.mongodb.org/mongo-driver/bson" "go.mongodb.org/mongo-driver/mongo/options" ) type EdbDataBase struct { EdbInfoId int `bson:"edb_info_id"` EdbCode string `bson:"edb_code"` DataTime string `bson:"data_time"` Value string `bson:"value"` Status int `bson:"status"` CreateTime string `bson:"create_time"` ModifyTime string `bson:"modify_time"` DataTimestamp int64 `bson:"data_timestamp"` } type EdbInfoSearchData struct { DataTime string `description:"数据日期" bson:"data_time"` Value float64 `description:"数据" bson:"value"` EdbCode string `description:"指标编码" bson:"edb_code"` } func GetEdbDataBaseByEdbInfoId(edbInfoId int) (items []*EdbDataBase, err error) { findOptions := options.Find() db := NewMgo(utils.MONGODB_COMMUNITY, "edb_data_base", MgoClient) filter := bson.D{{"edb_info_id", edbInfoId}} ctx := context.TODO() cur, err := db.Find(filter, findOptions) if err != nil { return } // Close the cursor once finished defer cur.Close(ctx) for cur.Next(ctx) { // create a value into which the single document can be decoded var elem EdbDataBase err = cur.Decode(&elem) if err != nil { return } items = append(items, &elem) } if err = cur.Err(); err != nil { return } return } // GetEdbDataList 获取指标的数据(日期正序返回) func GetEdbDataList(endInfoId int, startDate, endDate string) (list []*EdbDataBase, err error) { findOptions := options.Find() findOptions.SetSort(bson.D{{"data_time", 1}}) db := NewMgo(utils.MONGODB_COMMUNITY, "edb_data_base", MgoClient) filter := bson.D{{"edb_info_id", endInfoId}} if startDate != "" { filter = append(filter, bson.E{"data_time", bson.M{"$gte": startDate}}) } if endDate != "" { filter = append(filter, bson.E{"data_time", bson.M{"$lte": endDate}}) } ctx := context.TODO() cur, err := db.Find(filter, findOptions) if err != nil { return } // Close the cursor once finished defer cur.Close(ctx) for cur.Next(ctx) { // create a value into which the single document can be decoded var elem EdbDataBase err = cur.Decode(&elem) if err != nil { return } list = append(list, &elem) } if err = cur.Err(); err != nil { return } return }