Browse Source

注释未使用的变量

dev
yfh 4 months ago
parent
commit
20fbf0e695
  1. 12
      aggData.go
  2. 64
      staionGroup.go
  3. 26
      station.go

12
aggData.go

@ -51,9 +51,9 @@ var typeDict = map[int]string{
3005: "sum",
}
func GetAggTypeName(t int) string {
if val, ok := typeDict[t]; ok {
return val
}
return ""
}
//func GetAggTypeName(t int) string {
// if val, ok := typeDict[t]; ok {
// return val
// }
// return ""
//}

64
staionGroup.go

@ -10,38 +10,38 @@ import (
"strconv"
)
var group36 = `
RedisKey = group:36 的值
{
"id": 36,
"name": "上游沉降",
"group_type": "202",
"items": [
{
"sensor": 26,
"params_value": {
"base": false
}
},
{
"sensor": 43,
"params_value": {
"base": false
}
},
{
"sensor": 192,
"params_value": {
"base": true
}
}
],
"params": {
"ref_base": 193,
"ref_point": 23
}
}
`
//var group36 = `
//RedisKey = group:36 的值:
//{
// "id": 36,
// "name": "上游沉降",
// "group_type": "202",
// "items": [
// {
// "sensor": 26,
// "params_value": {
// "base": false
// }
// },
// {
// "sensor": 43,
// "params_value": {
// "base": false
// }
// },
// {
// "sensor": 192,
// "params_value": {
// "base": true
// }
// }
// ],
// "params": {
// "ref_base": 193,
// "ref_point": 23
// }
//}
//`
type StationGroup struct {
Id int `json:"id"`

26
station.go

@ -9,19 +9,19 @@ import (
"time"
)
type mStation struct {
Name string
Id int
Structure Structure
Factor Factor
ManualData bool `json:"manual_data"`
Params map[string]any
Group StationGroup
DeviceProto DeviceProto
CorrGroups []StationGroup //关联的分组(沉降级联)
Labels string
//CombineInfo // 测点数据组装信息
}
//type mStation struct {
// Name string
// Id int
// Structure Structure
// Factor Factor
// ManualData bool `json:"manual_data"`
// Params map[string]any
// Group StationGroup
// DeviceProto DeviceProto
// CorrGroups []StationGroup //关联的分组(沉降级联)
// Labels string
// //CombineInfo // 测点数据组装信息
//}
// Station 测点模型 = 基本信息 + 数据 + 阈值
type Station struct {

Loading…
Cancel
Save