123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- package Device
- import (
- "Cold_DeductionNotice/conf"
- "Cold_DeductionNotice/logs"
- "encoding/json"
- "fmt"
- "github.com/astaxie/beego/cache"
- _ "github.com/astaxie/beego/cache/redis"
- "github.com/beego/beego/v2/adapter/orm"
- _ "github.com/go-sql-driver/mysql"
- "time"
- )
- // 模板
- type Device struct {
- T_sn string `orm:"pk;size(256);null"` // 设备序列号
- T_pid int `orm:"index;size(256);null"` // Account.Company 绑定公司
- T_devName string `orm:"size(256);null"` // 设备名称 20字
- T_protocol int `orm:"size(2);default(1)"` // 冷链通讯协议 1 :1.0协议 2 :2.0协议 3 :3.0协议
- T_mqttid string `orm:"size(256);null"` // MQTT 服务ID
- T_VerifyTime time.Time `orm:"type(timestamp);null"` // 验证时间
- T_CalibrationTime time.Time `orm:"type(timestamp);null"` // 校准时间
- T_PatrolTime time.Time `orm:"type(timestamp);null"` // 巡检时间
- T_ist int `orm:"size(2);default(1)"` // 温度 1开启 2关闭
- T_ish int `orm:"size(2);default(1)"` // 湿度 1开启 2关闭
- // 设备同步参数
- T_Dattery int `orm:"size(4);null"` // 电量
- T_Site string `orm:"size(200);null"` // GPS
- T_monitor int `orm:"index;size(2);null"` // 监控状态 0 未监控 1 监控 停止记录
- T_online int `orm:"index;size(2);default(1)"` // 在线状态 0 未启用 1 在线 2 离线
- T_online_s int `orm:"index;size(2);default(0)"` // 在线状态-备用 0 未启用 1 在线 2 离线
- T_State int `orm:"index;size(2);default(1)"` // 0 屏蔽 1 正常 (屏蔽后 只有内部管理员才能看到,用户 输入SN\名称 搜索时 也能看到)
- // 硬件信息
- T_model string `orm:"size(200);null"` // KF200BG 设备型号
- T_sver string `orm:"size(200);null"` // "1.0.0",//软件版本
- T_hver string `orm:"size(200);null"` // "1.0.0",//硬件版本
- T_imei string `orm:"size(200);null"` // "867387060327718",//模组imei
- T_iccid string `orm:"size(200);null"` // "89860477102170049750",//sim卡号
- T_rssi string `orm:"size(200);null"` // "80",//信号强度
- CreateTime time.Time `orm:"column(create_time);type(timestamp);null;auto_now_add"` //auto_now_add 第一次保存时才设置时间
- UpdateTime time.Time `orm:"column(update_time);type(timestamp);null;auto_now"` //auto_now 每次 model 保存时都会对时间自动更新
- }
- type Device_task struct {
- T_sn string
- T_task string
- }
- func (t *Device) TableName() string {
- return "device" // 数据库名称 // ************** 替换 FormulaList **************
- }
- var redisCache_Device cache.Cache
- func init() {
- //注册模型
- orm.RegisterModel(new(Device))
- config := fmt.Sprintf(`{"key":"%s","conn":"%s","dbNum":"%s","password":"%s"}`,
- "redis_Device", conf.Redis_address, conf.Redis_dbNum, conf.Redis_password)
- logs.Println(config)
- var err error
- redisCache_Device, err = cache.NewCache("redis", config)
- if err != nil || redisCache_Device == nil {
- errMsg := "failed to init redis"
- logs.Println(errMsg, err)
- panic(any(errMsg))
- }
- }
- // ---------------- Redis -------------------
- // Redis_Set(m.T_sn,m) // Redis 更新缓存
- func Redis_Set(key string, r Device) (err error) {
- //json序列化
- str, err := json.Marshal(r)
- if err != nil {
- fmt.Print(err)
- return
- }
- err = redisCache_Device.Put(key, str, 24*time.Hour)
- if err != nil {
- logs.Println("set key:", key, ",value:", str, err)
- }
- return
- }
- // if r,is :=Redis_Get(T_sn);is{
- // return r,nil
- // }
- func Redis_Get(key string) (r Device, is bool) {
- if redisCache_Device.IsExist(key) {
- //println("找到key:",key)
- v := redisCache_Device.Get(key)
- if v == nil {
- return Device{}, false
- }
- json.Unmarshal(v.([]byte), &r)
- return r, true
- }
- //println("没有 找到key:",key)
- return Device{}, false
- }
- // ---------------- 特殊方法 -------------------
- // 获取 ById
- func Read_Device_ByT_sn(T_sn string) (r Device, err error) {
- if r, is := Redis_Get(T_sn); is {
- //println("Redis_Get OK")
- return r, nil
- }
- //println("没有 Redis_Get SN")
- o := orm.NewOrm()
- r = Device{T_sn: T_sn, T_State: 1}
- err = o.Read(&r, "T_sn", "T_State") // o.Read(&r,"Tokey") 如果不是 主键 就得指定字段名
- if err != nil {
- logs.Println("Read_Device_ByT_sn", err)
- return r, err
- }
- Redis_Set(r.T_sn, r) // Redis 更新缓存
- return r, err
- }
- // 修改
- func Update_Device(r Device, cols ...string) bool {
- o := orm.NewOrm()
- if num, err := o.Update(&r, cols...); err == nil {
- logs.Println("Number of records updated in database:", num)
- Redis_Set(r.T_sn, r) // Redis 更新缓存
- return true
- }
- return false
- }
|