manual_edb.go 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. // TargetDetailResp 指标数据结构体
  7. type TargetDetailResp struct {
  8. Detail *EdbInfoItem
  9. ClassifyList []*EdbdataClassify
  10. }
  11. // GetTargetByTradeCode
  12. // @Description: 根据手工指标编码获取指标信息
  13. // @author: Roc
  14. // @datetime 2024-07-16 14:18:10
  15. // @param tradeCode string
  16. // @return item *Edbinfo
  17. // @return err error
  18. func GetTargetByTradeCode(tradeCode string) (item *EdbInfoItem, err error) {
  19. sql := `SELECT * FROM edbinfo WHERE TRADE_CODE = ? `
  20. o := orm.NewOrmUsingDB("edb")
  21. err = o.Raw(sql, tradeCode).QueryRow(&item)
  22. return
  23. }
  24. // GetCountManualUserClassify
  25. // @Description: 根据用户ID和分类ID获取关系数量
  26. // @author: Roc
  27. // @datetime 2024-07-16 14:27:58
  28. // @param sysUserId int
  29. // @param classifyId int
  30. // @return total int
  31. // @return err error
  32. func GetCountManualUserClassify(sysUserId, classifyId int) (total int, err error) {
  33. o := orm.NewOrmUsingDB("data")
  34. sql := `SELECT count(1) ct FROM manual_user_classify WHERE admin_id=? AND classify_id = ? `
  35. err = o.Raw(sql, sysUserId, classifyId).QueryRow(&total)
  36. return
  37. }
  38. func GetManualClassifyByClassifyId(classifyId int) (item *EdbdataClassify, err error) {
  39. o := orm.NewOrmUsingDB("edb")
  40. sql := ` SELECT classify_id,classify_name,parent_id FROM edbdata_classify WHERE classify_id = ? `
  41. err = o.Raw(sql, classifyId).QueryRow(&item)
  42. return
  43. }
  44. // GetEdbDataListByCode
  45. // @Description: 通过指标ID获取所有数据
  46. // @author: Roc
  47. // @datetime 2024-07-16 15:32:41
  48. // @param tradeCode string
  49. // @return items []*Edbdata
  50. // @return err error
  51. func GetEdbDataListByCode(tradeCode string) (items []*Edbdata, err error) {
  52. sql := ` SELECT TRADE_CODE,DT,round(CLOSE,4) CLOSE,modify_time FROM edbdata WHERE TRADE_CODE = ? GROUP BY TRADE_CODE,DT ORDER BY DT DESC `
  53. o := orm.NewOrmUsingDB("edb")
  54. _, err = o.Raw(sql, tradeCode).QueryRows(&items)
  55. return
  56. }
  57. // EdbInfoListItem
  58. type EdbInfoListItem struct {
  59. TradeCode string `orm:"column(TRADE_CODE);pk" description:"指标code"`
  60. SecName string `orm:"column(SEC_NAME);" description:"指标名称"`
  61. Unit string `orm:"column(UNIT);" description:"单位"`
  62. Remark string `orm:"column(REMARK);" description:"备注"`
  63. Frequency string `description:"频度"`
  64. ClassifyId int `description:"分类id"`
  65. ClassifyName string `description:"分类名称"`
  66. CreateDate string `description:"创建时间"`
  67. UserId int `description:"录入用户id"`
  68. NoticeTime string `description:"通知时间"`
  69. Mobile string `description:"录入者手机号"`
  70. ModifyDate string `description:"待更新日期"`
  71. Status string `description:"状态:未完成/完成"`
  72. UniqueCode string
  73. EdbExist int `description:"指标库是否已添加:0-否;1-是"`
  74. }
  75. // EdbListResp 指标数据结构体
  76. type EdbListResp struct {
  77. List []*EdbInfoListItem
  78. Paging *paging.PagingItem `description:"分页数据"`
  79. }
  80. // GetEdbInfoList
  81. // @Description: 根据条件获取指标列表
  82. // @author: Roc
  83. // @datetime 2024-07-17 10:34:05
  84. // @param condition string
  85. // @param pars []interface{}
  86. // @return items []*Edbinfo
  87. // @return err error
  88. func GetEdbInfoList(condition string, pars []interface{}, startSize, pageSize int) (items []*EdbInfoListItem, err error) {
  89. o := orm.NewOrmUsingDB("edb")
  90. sql := `SELECT DISTINCT a.* FROM edbinfo AS a WHERE a.REMARK='手动' `
  91. if condition != "" {
  92. sql += condition
  93. }
  94. sql += ` ORDER BY a.create_date DESC `
  95. if pageSize > 0 {
  96. sql += ` LIMIT ?,? `
  97. pars = append(pars, startSize, pageSize)
  98. }
  99. _, err = o.Raw(sql, pars).QueryRows(&items)
  100. return
  101. }
  102. // GetCountEdbInfoList
  103. // @Description: 根据条件获取指标数量
  104. // @author: Roc
  105. // @datetime 2024-07-17 14:51:00
  106. // @param condition string
  107. // @param pars []interface{}
  108. // @return total int
  109. // @return err error
  110. func GetCountEdbInfoList(condition string, pars []interface{}) (total int, err error) {
  111. o := orm.NewOrmUsingDB("edb")
  112. sql := `SELECT COUNT(1) ct FROM edbinfo AS a WHERE a.REMARK='手动' `
  113. if condition != "" {
  114. sql += condition
  115. }
  116. sql += ` ORDER BY a.create_date DESC `
  117. err = o.Raw(sql, pars).QueryRow(&total)
  118. return
  119. }