ProductProt.go 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. package Product
  2. import (
  3. "AIOTCOER/conf"
  4. "AIOTCOER/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. orm2 "github.com/beego/beego/v2/client/orm"
  11. _ "github.com/go-sql-driver/mysql"
  12. "time"
  13. )
  14. // 产品协议
  15. type ProductProt struct {
  16. Id int `orm:"column(ID);size(11);auto;pk" json:"Id" form:"Id"`
  17. T_uuid string `orm:"size(8);" json:"T_uuid" form:"T_uuid"` // 用户识别码(8位) ,管理员可以为空
  18. T_lang int `orm:"size(1);default(1)" json:"T_lang" form:"T_lang"` //编程语言 0: 无解析 1: go 2: C
  19. T_analysis string `orm:"size(100);default('')" json:"T_analysis" form:"T_analysis"` // 插件 SO 文件名
  20. T_text string `orm:"type(text);default('')" json:"T_text" form:"T_text"` // 代码内容
  21. T_describe string `orm:"type(text);default('')" json:"T_describe" form:"T_describe"` // 描述内容
  22. }
  23. func (t *ProductProt) TableName() string {
  24. return "ProductProt" // 数据库名称 // ************** 替换 FormulaList **************
  25. }
  26. var redis_ProductProt cache.Cache
  27. func init() {
  28. //注册模型
  29. orm.RegisterModel(new(ProductProt))
  30. config := fmt.Sprintf(`{"key":"%s","conn":"%s","dbNum":"%s","password":"%s"}`,
  31. "ProductProt", conf.Redis_address, conf.Redis_dbNum, conf.Redis_password)
  32. var err error
  33. redis_ProductProt, err = cache.NewCache("redis", config)
  34. if err != nil || redis_ProductProt == nil {
  35. logs.PrintlnError(config, err)
  36. panic(any(err))
  37. }
  38. }
  39. // ---------------- Redis -------------------
  40. func (t *ProductProt) redis_Set() (err error) {
  41. //json序列化
  42. str, err := json.Marshal(t)
  43. if err != nil {
  44. logs.PrintlnError("Redis_Set", err)
  45. return
  46. }
  47. err = redis_ProductProt.Put(fmt.Sprintf("%d", t.Id), str, 24*time.Hour)
  48. if err != nil {
  49. logs.Println("set key:", t.Id, ",value:", str, err)
  50. }
  51. return
  52. }
  53. func (t *ProductProt) redis_Get(key string) (is bool) {
  54. if redis_ProductProt.IsExist(key) {
  55. //println("找到key:",key)
  56. v := redis_ProductProt.Get(key)
  57. if v == nil {
  58. return false
  59. }
  60. json.Unmarshal(v.([]byte), t)
  61. return true
  62. }
  63. //println("没有 找到key:",key)
  64. return false
  65. }
  66. func (t *ProductProt) redis_DelK() (err error) {
  67. err = redis_ProductProt.Delete(fmt.Sprintf("%d", t.Id))
  68. return
  69. }
  70. // ---------------- 方法 -------------------
  71. // 添加
  72. func (t *ProductProt) Add() ( int, bool) {
  73. o := orm.NewOrm()
  74. id, err := o.Insert(t)
  75. if err != nil {
  76. return 0,false
  77. }
  78. println(id)
  79. t.redis_Set()
  80. return int(id),true
  81. }
  82. // 获取
  83. func (t *ProductProt) Read() (bool bool) {
  84. if t.redis_Get(fmt.Sprintf("%d", t.Id)) {
  85. return true
  86. }
  87. if !(t.Id > 0) {
  88. logs.Println("ProductProt.Id:", t.Id)
  89. return false
  90. }
  91. o := orm.NewOrm()
  92. err := o.Read(t) // o.Read(&r,"Tokey") 如果不是 主键 就得指定字段名
  93. if err != nil {
  94. return false
  95. }
  96. t.redis_Set() // Redis 更新缓存
  97. return true
  98. }
  99. // 修改
  100. func (t *ProductProt) Update(cols ...string) bool {
  101. o := orm.NewOrm()
  102. if num, err := o.Update(t, cols...); err == nil {
  103. logs.Println("Number of records updated in database:", num)
  104. t.redis_Set() // Redis 更新缓存
  105. return true
  106. }
  107. return false
  108. }
  109. // 删除
  110. func (t *ProductProt) Delete() bool {
  111. o := orm.NewOrm()
  112. if num, err := o.Delete(t); err == nil {
  113. logs.Println("Number of records deleted in database:", num)
  114. } else {
  115. return false
  116. }
  117. t.redis_DelK()
  118. return true
  119. }
  120. // 获取列表
  121. func (t *ProductProt) Lists(PageIndex int, PageSize int) (r []ProductProt, Total int64) {
  122. o := orm.NewOrm()
  123. // 也可以直接使用 Model 结构体作为表名
  124. qs := o.QueryTable(new(ProductProt))
  125. var offset int64
  126. if PageIndex <= 1 {
  127. offset = 0
  128. } else {
  129. offset = int64((PageIndex - 1) * PageSize)
  130. }
  131. // 筛选参数
  132. cond := orm.NewCondition()
  133. if len(t.T_uuid) == 8 {
  134. cond = cond.And("T_uuid", t.T_uuid) // 用户识别码
  135. }
  136. // 执行
  137. qs.Limit(PageSize, offset).SetCond((*orm2.Condition)(cond)).All(&r)
  138. Total, _ = qs.SetCond((*orm2.Condition)(cond)).Count()
  139. return r, Total
  140. }
  141. // 获取列表
  142. func (t *ProductProt) Lists_All() (r []ProductProt) {
  143. o := orm.NewOrm()
  144. // 也可以直接使用 Model 结构体作为表名
  145. qs := o.QueryTable(new(ProductProt))
  146. // 筛选参数
  147. cond := orm.NewCondition()
  148. if len(t.T_uuid) == 8 {
  149. cond = cond.And("T_uuid", t.T_uuid) // 用户识别码
  150. }
  151. // 执行
  152. qs.SetCond((*orm2.Condition)(cond)).All(&r)
  153. return r
  154. }