config.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "time"
  5. )
  6. type CygxConfig struct {
  7. ConfigId int `json:"-" orm:"column(config_id);pk"`
  8. ConfigCode string `json:"-"`
  9. ConfigValue string
  10. Remark string `json:"-"`
  11. CreateTime time.Time `json:"-"`
  12. }
  13. type KeyWord struct {
  14. KeyWord string `description:"关键词"`
  15. }
  16. func GetConfigByCode(configCode string) (item *CygxConfig, err error) {
  17. sql := `SELECT * FROM cygx_config WHERE config_code=? `
  18. err = orm.NewOrm().Raw(sql, configCode).QueryRow(&item)
  19. return
  20. }
  21. type ConfigResp struct {
  22. Item *CygxConfig
  23. List []*KeyWord `description:"图表搜索推荐"`
  24. }
  25. //获取是否展示限免标签
  26. func GetShowSustainable() (count int, err error) {
  27. o := orm.NewOrm()
  28. sqlCount := ` SELECT COUNT(1) FROM cygx_config WHERE config_code= 'is_show_sustainable' AND config_value = 1 `
  29. err = o.Raw(sqlCount).QueryRow(&count)
  30. return
  31. }
  32. // 通过报告精选来获取最新的推荐搜索词
  33. func GetHotSearch() (permission string, err error) {
  34. sql := ` SELECT
  35. GROUP_CONCAT(DISTINCT s.subject_name ORDER BY rl.article_sun_id ASC SEPARATOR ',') AS subject_name
  36. FROM
  37. cygx_report_selection_log AS rl
  38. INNER JOIN cygx_industrial_subject AS s ON s.industrial_subject_id = rl.industrial_subject_id
  39. WHERE
  40. rl.article_id = (
  41. SELECT
  42. MAX( article_id )
  43. FROM
  44. cygx_report_selection WHERE publish_status = 1)`
  45. o := orm.NewOrm()
  46. err = o.Raw(sql).QueryRow(&permission)
  47. return
  48. }