Device.go 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package Device
  2. import (
  3. "Cold_DeductionNotice/conf"
  4. "Cold_DeductionNotice/logs"
  5. "encoding/json"
  6. "fmt"
  7. "github.com/astaxie/beego/cache"
  8. _ "github.com/astaxie/beego/cache/redis"
  9. "github.com/beego/beego/v2/adapter/orm"
  10. _ "github.com/go-sql-driver/mysql"
  11. "time"
  12. )
  13. // 模板
  14. type Device struct {
  15. T_sn string `orm:"pk;size(256);null"` // 设备序列号
  16. T_pid int `orm:"index;size(256);null"` // Account.Company 绑定公司
  17. T_devName string `orm:"size(256);null"` // 设备名称 20字
  18. T_protocol int `orm:"size(2);default(1)"` // 冷链通讯协议 1 :1.0协议 2 :2.0协议 3 :3.0协议
  19. T_mqttid string `orm:"size(256);null"` // MQTT 服务ID
  20. T_VerifyTime time.Time `orm:"type(timestamp);null"` // 验证时间
  21. T_CalibrationTime time.Time `orm:"type(timestamp);null"` // 校准时间
  22. T_PatrolTime time.Time `orm:"type(timestamp);null"` // 巡检时间
  23. T_ist int `orm:"size(2);default(1)"` // 温度 1开启 2关闭
  24. T_ish int `orm:"size(2);default(1)"` // 湿度 1开启 2关闭
  25. // 设备同步参数
  26. T_Dattery int `orm:"size(4);null"` // 电量
  27. T_Site string `orm:"size(200);null"` // GPS
  28. T_monitor int `orm:"index;size(2);null"` // 监控状态 0 未监控 1 监控 停止记录
  29. T_online int `orm:"index;size(2);default(1)"` // 在线状态 0 未启用 1 在线 2 离线
  30. T_online_s int `orm:"index;size(2);default(0)"` // 在线状态-备用 0 未启用 1 在线 2 离线
  31. T_State int `orm:"index;size(2);default(1)"` // 0 屏蔽 1 正常 (屏蔽后 只有内部管理员才能看到,用户 输入SN\名称 搜索时 也能看到)
  32. // 硬件信息
  33. T_model string `orm:"size(200);null"` // KF200BG 设备型号
  34. T_sver string `orm:"size(200);null"` // "1.0.0",//软件版本
  35. T_hver string `orm:"size(200);null"` // "1.0.0",//硬件版本
  36. T_imei string `orm:"size(200);null"` // "867387060327718",//模组imei
  37. T_iccid string `orm:"size(200);null"` // "89860477102170049750",//sim卡号
  38. T_rssi string `orm:"size(200);null"` // "80",//信号强度
  39. CreateTime time.Time `orm:"column(create_time);type(timestamp);null;auto_now_add"` //auto_now_add 第一次保存时才设置时间
  40. UpdateTime time.Time `orm:"column(update_time);type(timestamp);null;auto_now"` //auto_now 每次 model 保存时都会对时间自动更新
  41. }
  42. type Device_task struct {
  43. T_sn string
  44. T_task string
  45. }
  46. func (t *Device) TableName() string {
  47. return "device" // 数据库名称 // ************** 替换 FormulaList **************
  48. }
  49. var redisCache_Device cache.Cache
  50. func init() {
  51. //注册模型
  52. orm.RegisterModel(new(Device))
  53. config := fmt.Sprintf(`{"key":"%s","conn":"%s","dbNum":"%s","password":"%s"}`,
  54. "redis_Device", conf.Redis_address, conf.Redis_dbNum, conf.Redis_password)
  55. logs.Println(config)
  56. var err error
  57. redisCache_Device, err = cache.NewCache("redis", config)
  58. if err != nil || redisCache_Device == nil {
  59. errMsg := "failed to init redis"
  60. logs.Println(errMsg, err)
  61. panic(any(errMsg))
  62. }
  63. }
  64. // ---------------- Redis -------------------
  65. // Redis_Set(m.T_sn,m) // Redis 更新缓存
  66. func Redis_Set(key string, r Device) (err error) {
  67. //json序列化
  68. str, err := json.Marshal(r)
  69. if err != nil {
  70. fmt.Print(err)
  71. return
  72. }
  73. err = redisCache_Device.Put(key, str, 24*time.Hour)
  74. if err != nil {
  75. logs.Println("set key:", key, ",value:", str, err)
  76. }
  77. return
  78. }
  79. // if r,is :=Redis_Get(T_sn);is{
  80. // return r,nil
  81. // }
  82. func Redis_Get(key string) (r Device, is bool) {
  83. if redisCache_Device.IsExist(key) {
  84. //println("找到key:",key)
  85. v := redisCache_Device.Get(key)
  86. if v == nil {
  87. return Device{}, false
  88. }
  89. json.Unmarshal(v.([]byte), &r)
  90. return r, true
  91. }
  92. //println("没有 找到key:",key)
  93. return Device{}, false
  94. }
  95. // ---------------- 特殊方法 -------------------
  96. // 获取 ById
  97. func Read_Device_ByT_sn(T_sn string) (r Device, err error) {
  98. if r, is := Redis_Get(T_sn); is {
  99. //println("Redis_Get OK")
  100. return r, nil
  101. }
  102. //println("没有 Redis_Get SN")
  103. o := orm.NewOrm()
  104. r = Device{T_sn: T_sn, T_State: 1}
  105. err = o.Read(&r, "T_sn", "T_State") // o.Read(&r,"Tokey") 如果不是 主键 就得指定字段名
  106. if err != nil {
  107. logs.Println("Read_Device_ByT_sn", err)
  108. return r, err
  109. }
  110. Redis_Set(r.T_sn, r) // Redis 更新缓存
  111. return r, err
  112. }
  113. // 修改
  114. func Update_Device(r Device, cols ...string) bool {
  115. o := orm.NewOrm()
  116. if num, err := o.Update(&r, cols...); err == nil {
  117. logs.Println("Number of records updated in database:", num)
  118. Redis_Set(r.T_sn, r) // Redis 更新缓存
  119. return true
  120. }
  121. return false
  122. }