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", 3005: "sum",
} }
func GetAggTypeName(t int) string { //func GetAggTypeName(t int) string {
if val, ok := typeDict[t]; ok { // if val, ok := typeDict[t]; ok {
return val // return val
} // }
return "" // return ""
} //}

64
staionGroup.go

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

26
station.go

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

Loading…
Cancel
Save