bigModel.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. package dao
  2. import (
  3. "time"
  4. )
  5. type QueryDevices struct {
  6. //countNum:灯杆总数,
  7. //faultNum:灯杆报警数,
  8. CountNum int64 `json:"countNum"`
  9. FaultNum int64 `json:"faultNum"`
  10. Devices []Device `json:"list"`
  11. }
  12. type Device struct {
  13. //lng经度,lat纬度,status:状态,name:名字,code:编码,lampPoleName:灯杆名,brand:品牌,model:型号,linkNum:连接设备数,
  14. Lng float64 `json:"lng"`
  15. Lat float64 `json:"lat"`
  16. Status int `json:"status"`
  17. Name string `json:"name"`
  18. Code string `json:"code"`
  19. LampPoleName string `json:"lampPoleName"`
  20. Model string `json:"model"`
  21. LinkNum int64 `json:"linkNum"`
  22. }
  23. type TotalLamp struct {
  24. CountNum int64 `json:"countNum"`
  25. FaultNum int64 `json:"faultNum"`
  26. }
  27. type ConfigInfo struct {
  28. Id int64 `json:"id"`
  29. SiteValue string `json:"siteValue"`
  30. }
  31. // url: '/api/longchi/largescreen/overview/device-status',
  32. type DeviceStatus struct {
  33. DeviceType string `json:"deviceType"`
  34. CountNum int64 `json:"countNum"`
  35. FaultNum int64 `json:"faultNum"`
  36. }
  37. func (d *DeviceStatus) Set(n, m int64) {
  38. d.CountNum = n
  39. d.FaultNum = m
  40. }
  41. // /api/longchi/largescreen/overview/energy-consumption
  42. type Energy struct {
  43. Date string `json:"date"`
  44. Difference float64 `json:"difference"`
  45. }
  46. type LightRate struct {
  47. Data []interface{}
  48. }
  49. // LightRate 亮灯率: /api/longchi/largescreen/overview/lighting-rate
  50. type LightRateM struct {
  51. Month string `json:"month"`
  52. Rate float64 `json:"rate"`
  53. }
  54. type LightRateQ struct {
  55. Quarter string `json:"quarter"`
  56. Rate float64 `json:"rate"`
  57. }
  58. type LightRateY struct {
  59. Year string `json:"year"`
  60. Rate float64 `json:"rate"`
  61. }
  62. // AlarmInfo http://localhost/api/longchi/largescreen/overview/alarm-information
  63. type AlarmList struct {
  64. Backlog int64 `json:"backlog"`
  65. LastMonthAlarm int64 `json:"lastMonthAlarm"`
  66. LastYearAlarm int64 `json:"lastYearAlarm"`
  67. List []AlarmInfo `json:"list"`
  68. }
  69. type AlarmInfo struct {
  70. ArmContent string `gorm:"arm_content" json:"armContent"`
  71. ArmDeviceTypeName string `gorm:"arm_device_type_name" json:"armDeviceTypeName"`
  72. ArmLevelName string `gorm:"level_name" json:"armLevelName"`
  73. CreateTime DateTimeString `gorm:"arm_time" json:"createTime"`
  74. }
  75. type DateTimeString time.Time
  76. const DateTimeFormatCN = "2006-01-02 15:04:05"
  77. func (t *DateTimeString) UnmarshalJSON(data []byte) (err error) {
  78. now, err := time.ParseInLocation(`"`+DateTimeFormatCN+`"`, string(data), time.Local)
  79. *t = DateTimeString(now)
  80. return
  81. }
  82. func (t *DateTimeString) MarshalJSON() ([]byte, error) {
  83. b := make([]byte, 0, len(DateTimeFormatCN)+2)
  84. b = append(b, '"')
  85. b = time.Time(*t).AppendFormat(b, DateTimeFormatCN)
  86. b = append(b, '"')
  87. return b, nil
  88. }
  89. func (t *DateTimeString) String() string {
  90. return time.Time(*t).Format(DateTimeFormatCN)
  91. }
  92. // lastYearJob,本月已处理lastMonthJob,待处理backJob,list{type,name,createTime})
  93. type FlowList struct {
  94. LastYearJob int64 `json:"lastYearJob"`
  95. LastMonthJob int64 `json:"lastMonthJob"`
  96. List []FlowInfo `json:"list"`
  97. }
  98. type FlowInfo struct {
  99. Name string `json:"name"`
  100. CreateTime time.Time `json:"createTime"`
  101. }
  102. // /setting/query-large-screen
  103. type ScreenSet struct {
  104. SiteValue string
  105. }
  106. // 环境监测http://localhost/api/longchi/largescreen/overview/weather-now?id=1
  107. type Environment struct {
  108. //AirIndex int64
  109. Air float64 `json:"airQuality"`
  110. //LampPoleLocation string `json:"lampPoleLocation"`
  111. CreateDate string `json:"endLineTime"`
  112. Temperature float64 `json:"realTimeTemperature"`
  113. Humidity float64 `json:"humidity"`
  114. Pm25 float64 `json:"pm25"`
  115. Pm10 float64 `json:"pm10"`
  116. Noise float64 `json:"noise"`
  117. Hpa float64 `json:"pressure"` //气压
  118. WindDirection string `json:"direction"`
  119. WindSpeed float64 `json:"realTimeWindSpeed"` //风力等级
  120. }
  121. // 信息屏
  122. type InfoBoardProgram struct {
  123. Id int64 `json:"id"`
  124. Name string `json:"name"` //节目名字
  125. Duration int64 `json:"duration"` //播放时长
  126. Count int64 `json:"countDeviceNum"` //关联设备
  127. ResolutionName string `json:"resolutionName"` //分辨率
  128. EndTime DateString `json:"endTime"` //结束时间
  129. }
  130. type Program struct {
  131. Id int64 `json:"id"`
  132. SendUrl string `json:"sendUrl"`
  133. }
  134. type DateString time.Time
  135. const TimeFormatCN = "2006-01-02"
  136. func (t *DateString) UnmarshalJSON(data []byte) (err error) {
  137. now, err := time.ParseInLocation(`"`+TimeFormatCN+`"`, string(data), time.Local)
  138. *t = DateString(now)
  139. return
  140. }
  141. func (t *DateString) MarshalJSON() ([]byte, error) {
  142. b := make([]byte, 0, len(TimeFormatCN)+2)
  143. b = append(b, '"')
  144. b = time.Time(*t).AppendFormat(b, TimeFormatCN)
  145. b = append(b, '"')
  146. return b, nil
  147. }
  148. func (t *DateString) String() string {
  149. return time.Time(*t).Format(TimeFormatCN)
  150. }
  151. type Sensor struct {
  152. Id int64 `json:"id"`
  153. Name string `json:"name"`
  154. }