ProductOTA.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. package Product
  2. import (
  3. "AIOTCOER/logs"
  4. "AIOTCOER/models"
  5. "github.com/astaxie/beego/cache"
  6. _ "github.com/astaxie/beego/cache/redis"
  7. "github.com/beego/beego/v2/adapter/orm"
  8. orm2 "github.com/beego/beego/v2/client/orm"
  9. _ "github.com/go-sql-driver/mysql"
  10. )
  11. // OTA
  12. type ProductOTA struct {
  13. Id int `orm:"column(ID);size(11);auto;pk" json:"Id" form:"Id"`
  14. T_ProductID string `orm:"size(8);index" json:"T_ProductID" form:"T_ProductID"` // 产品型号 随机生成(8位)
  15. T_name string `orm:"size(256);" json:"T_name" form:"T_name"` // 固件名称
  16. T_version string `orm:"size(200);" json:"T_version" form:"T_version"` // 版本
  17. T_file string `orm:"type(text);default('')" json:"T_file" form:"T_file"` // 文件
  18. T_hash string `orm:"type(text);default('')" json:"T_hash" form:"T_hash"` // 文件 MD5
  19. T_size int `orm:"size(256);" json:"T_size" form:"T_size"` // 文件大小 字节
  20. T_describe string `orm:"type(text);default('')" json:"T_describe" form:"T_describe"` // 描述
  21. T_publish bool `orm:"" json:"T_publish" form:"T_publish"` // 全量发布(类型所有设备 全部更新)默认:不发布 \ 全量发布
  22. CreateTime models.Time `orm:"column(create_time);type(timestamp);auto_now_add" json:"CreateTime"`
  23. }
  24. func (t *ProductOTA) TableName() string {
  25. return "ProductOTA" // 数据库名称 // ************** 替换 FormulaList **************
  26. }
  27. var redis_ProductOTA cache.Cache
  28. func init() {
  29. //注册模型
  30. orm.RegisterModel(new(ProductOTA))
  31. }
  32. // 添加
  33. func (t *ProductOTA) Add() (is bool) {
  34. o := orm.NewOrm()
  35. id, err := o.Insert(t)
  36. if err != nil {
  37. return false
  38. }
  39. println(id)
  40. return true
  41. }
  42. // 获取
  43. func (t *ProductOTA) Read() (bool bool) {
  44. o := orm.NewOrm()
  45. err := o.Read(t) // o.Read(&r,"Tokey") 如果不是 主键 就得指定字段名
  46. if err != nil {
  47. return false
  48. }
  49. return true
  50. }
  51. // 删除
  52. func (t *ProductOTA) Delete() bool {
  53. o := orm.NewOrm()
  54. if num, err := o.Delete(t); err == nil {
  55. logs.Println("Number of records deleted in database:", num)
  56. } else {
  57. return false
  58. }
  59. return true
  60. }
  61. // 获取列表
  62. func (t *ProductOTA) Lists(PageIndex int, PageSize int) (r []ProductOTA, Total int64) {
  63. o := orm.NewOrm()
  64. // 也可以直接使用 Model 结构体作为表名
  65. qs := o.QueryTable(new(ProductOTA))
  66. var offset int64
  67. if PageIndex <= 1 {
  68. offset = 0
  69. } else {
  70. offset = int64((PageIndex - 1) * PageSize)
  71. }
  72. // 筛选参数
  73. cond := orm.NewCondition()
  74. if len(t.T_name) > 0 {
  75. cond = cond.And("T_name__icontains", t.T_name) // .AndNot("status__in", 1).Or("profile__age__gt", 2000)
  76. }
  77. if len(t.T_version) > 0 {
  78. cond = cond.And("T_version__icontains", t.T_version) // .AndNot("status__in", 1).Or("profile__age__gt", 2000)
  79. }
  80. // 执行
  81. qs.Limit(PageSize, offset).SetCond((*orm2.Condition)(cond)).OrderBy("-CreateTime").All(&r)
  82. Total, _ = qs.SetCond((*orm2.Condition)(cond)).Count()
  83. return r, Total
  84. }