forLightRateService.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package edge_service
  2. import (
  3. "encoding/json"
  4. "github.com/mitchellh/mapstructure"
  5. "io/ioutil"
  6. "iot_manager_service/config"
  7. "net/http"
  8. "strings"
  9. )
  10. // ForLightRate 获取设备能耗数据
  11. type ForLightRate struct{}
  12. // ForLightRateReq 请求参数
  13. type ForLightRateReq struct {
  14. Tenant string `json:"tenant"` //租户号
  15. Start string `json:"start"`
  16. End string `json:"end"`
  17. Flag int `json:"flag"` //0日 1月 2季 3年
  18. }
  19. // ForLightRateRes 返回数据
  20. type ForLightRateRes struct {
  21. Code int `json:"code"`
  22. Msg string `json:"msg"`
  23. Data map[string]interface{} `json:"data"`
  24. }
  25. type ForLightRateData struct {
  26. Date string `json:"date"`
  27. Month string `json:"month"`
  28. Total int `json:"total"`
  29. Number int `json:"number"`
  30. Rate float64 `json:"rate"`
  31. }
  32. func (r *ForLightRate) GetLightRate(reqPostData ForLightRateReq) ([]ForLightRateData, error) {
  33. //if reqPostData.Tenant == "100000" {
  34. // reqPostData.Tenant = "000000"
  35. //}
  36. cfg := config.Instance()
  37. api := cfg.Foreign.IotEdgeUrl + "/data/v1/lightingrate"
  38. method := "POST"
  39. client := &http.Client{}
  40. marshal, _ := json.Marshal(reqPostData)
  41. req, err := http.NewRequest(method, api, strings.NewReader(string(marshal)))
  42. if err != nil {
  43. return nil, err
  44. }
  45. res, err := client.Do(req)
  46. if err != nil {
  47. return nil, err
  48. }
  49. defer res.Body.Close()
  50. body, err := ioutil.ReadAll(res.Body)
  51. if err != nil {
  52. return nil, err
  53. }
  54. result := ForLightRateRes{}
  55. err = json.Unmarshal(body, &result)
  56. if err != nil {
  57. return nil, err
  58. }
  59. if result.Code != 0 {
  60. panic(result.Msg)
  61. }
  62. data := result.Data
  63. var list []ForLightRateData
  64. err = mapstructure.Decode(data["data"], &list)
  65. if err != nil {
  66. return nil, err
  67. }
  68. println(data["data"])
  69. return list, nil
  70. }