edb_info.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. package data_manage
  2. import (
  3. "errors"
  4. "eta_gn/eta_task/global"
  5. "eta_gn/eta_task/utils"
  6. "fmt"
  7. "strconv"
  8. "time"
  9. )
  10. type EdbInfo struct {
  11. EdbInfoId int `orm:"column(edb_info_id);pk"`
  12. SourceName string `description:"来源名称"`
  13. Source int `description:"来源id"`
  14. EdbCode string `description:"指标编码"`
  15. EdbName string `description:"指标名称"`
  16. EdbNameSource string `description:"指标名称来源"`
  17. Frequency string `description:"频率"`
  18. Unit string `description:"单位"`
  19. StartDate string `description:"起始日期"`
  20. EndDate string `description:"终止日期"`
  21. ClassifyId int `description:"分类id"`
  22. SysUserId int
  23. SysUserRealName string
  24. UniqueCode string `description:"指标唯一编码"`
  25. CreateTime time.Time
  26. ModifyTime time.Time
  27. MinValue float64 `description:"指标最小值"`
  28. MaxValue float64 `description:"指标最大值"`
  29. CalculateFormula string `description:"计算公式"`
  30. NoUpdate int8 `description:"是否停止更新,0:继续更新;1:停止更新"`
  31. EdbInfoType int `description:"指标类型,0:普通指标,1:预测指标"`
  32. EdbType int `description:"指标类型:1:基础指标,2:计算指标"`
  33. }
  34. type EdbInfoList struct {
  35. EdbInfoId int `orm:"column(edb_info_id);pk"`
  36. SourceName string `description:"来源名称"`
  37. Source int `description:"来源id"`
  38. SubSource int `description:"子数据来源:0:经济数据库,1:日期序列"`
  39. SubSourceName string `description:"子数据来源名称"`
  40. EdbCode string `description:"指标编码"`
  41. EdbName string `description:"指标名称"`
  42. Frequency string `description:"频率"`
  43. Unit string `description:"单位"`
  44. StartDate time.Time `description:"起始日期"`
  45. EndDate time.Time `description:"终止日期"`
  46. ClassifyId int `description:"分类id"`
  47. UniqueCode string `description:"指标唯一编码"`
  48. CalculateFormula string `description:"计算公式"`
  49. ModifyTime string `description:"更新时间"`
  50. NoUpdate int8 `description:"是否停止更新,0:继续更新;1:停止更新"`
  51. }
  52. type EdbInfoSearchData struct {
  53. EdbDataId int `description:"指标数据Id"`
  54. DataTime string `description:"数据日期"`
  55. Value float64 `description:"数据"`
  56. }
  57. type EdbInfoSearchDataV1 struct {
  58. DataTime string `description:"数据日期"`
  59. Value string `description:"数据"`
  60. }
  61. func GetEdbInfoByCondition(condition string, pars []interface{}, order int) (item []*EdbInfoList, err error) {
  62. //o := orm.NewOrm()
  63. sql := ` SELECT * FROM edb_info WHERE 1=1 `
  64. if condition != "" {
  65. sql += condition
  66. }
  67. if order == 1 {
  68. sql += ` ORDER BY end_date ASC `
  69. } else {
  70. sql += ` ORDER BY edb_info_id ASC `
  71. }
  72. //_, err = o.Raw(sql, pars).QueryRows(&item)
  73. err = global.DEFAULT_DmSQL.Raw(sql, pars...).Find(&item).Error
  74. return
  75. }
  76. func ModifyEdbDataInfoDate(edbInfoId int, maxDate string) (err error) {
  77. //o := orm.NewOrm()
  78. sql := ` UPDATE edb_info SET end_date=?,modify_time=NOW() WHERE edb_info_id=? `
  79. //_, err = o.Raw(sql, maxDate, edbInfoId).Exec()
  80. err = global.DEFAULT_DmSQL.Exec(sql, maxDate, edbInfoId).Error
  81. return
  82. }
  83. type EdbInfoMaxAndMinInfo struct {
  84. MinDate string `description:"最小日期"`
  85. MaxDate string `description:"最大日期"`
  86. MinValue float64 `description:"最小值"`
  87. MaxValue float64 `description:"最大值"`
  88. LatestValue float64 `description:"最新值"`
  89. }
  90. func GetEdbInfoMaxAndMinInfo(source, subSource int, edbCode string) (item *EdbInfoMaxAndMinInfo, err error) {
  91. //o := orm.NewOrm()
  92. sql := ``
  93. tableName := GetEdbDataTableName(source, subSource)
  94. if tableName == "" {
  95. err = errors.New("无效的表名称:source:" + strconv.Itoa(source))
  96. return nil, err
  97. }
  98. sql = ` SELECT MIN(data_time) AS min_date,MAX(data_time) AS max_date,MIN(value) AS min_value,MAX(value) AS max_value FROM %s WHERE edb_code=? `
  99. sql = fmt.Sprintf(sql, tableName)
  100. //err = o.Raw(sql, edbCode).QueryRow(&item)
  101. err = global.DEFAULT_DmSQL.Raw(sql, edbCode).First(&item).Error
  102. var latest_value float64
  103. sql = ` SELECT value AS latest_value FROM %s WHERE edb_code=? ORDER BY data_time DESC LIMIT 1 `
  104. sql = fmt.Sprintf(sql, tableName)
  105. //err = o.Raw(sql, edbCode).QueryRow(&latest_value)
  106. err = global.DEFAULT_DmSQL.Raw(sql, edbCode).First(&latest_value).Error
  107. item.LatestValue = latest_value
  108. return
  109. }
  110. func ModifyEdbInfoMaxAndMinInfo(edbInfoId int, item *EdbInfoMaxAndMinInfo) (err error) {
  111. //o := orm.NewOrm()
  112. sql := ` UPDATE edb_info SET start_date=?,end_date=?,min_value=?,max_value=?,is_update=2,latest_date=?,latest_value=?,modify_time=NOW() WHERE edb_info_id=? `
  113. //_, err = o.Raw(sql, item.MinDate, item.MaxDate, item.MinValue, item.MaxValue, item.MaxDate, item.LatestValue, edbInfoId).Exec()
  114. err = global.DEFAULT_DmSQL.Exec(sql, item.MinDate, item.MaxDate, item.MinValue, item.MaxValue, item.MaxDate, item.LatestValue, edbInfoId).Error
  115. return
  116. }
  117. //order:1升序,其余值为降序
  118. func GetEdbDataListAll(condition string, pars []interface{}, source, subSource, order int) (item []*EdbInfoSearchData, err error) {
  119. //o := orm.NewOrm()
  120. sql := ``
  121. tableName := GetEdbDataTableName(source, subSource)
  122. sql = ` SELECT * FROM %s WHERE 1=1 `
  123. sql = fmt.Sprintf(sql, tableName)
  124. if condition != "" {
  125. sql += condition
  126. }
  127. if order == 1 {
  128. sql += ` ORDER BY data_time ASC `
  129. } else {
  130. sql += ` ORDER BY data_time DESC `
  131. }
  132. //_, err = o.Raw(sql, pars).QueryRows(&item)
  133. err = global.DEFAULT_DmSQL.Raw(sql, pars...).Find(&item).Error
  134. return
  135. }
  136. func GetEdbDataListAllV1(condition string, pars []interface{}, source, subSource, order int) (item []*EdbInfoSearchDataV1, err error) {
  137. //o := orm.NewOrm()
  138. sql := ``
  139. tableName := GetEdbDataTableName(source, subSource)
  140. sql = ` SELECT * FROM %s WHERE 1=1 `
  141. sql = fmt.Sprintf(sql, tableName)
  142. if condition != "" {
  143. sql += condition
  144. }
  145. if order == 1 {
  146. sql += ` ORDER BY data_time ASC `
  147. } else {
  148. sql += ` ORDER BY data_time DESC `
  149. }
  150. //_, err = o.Raw(sql, pars).QueryRows(&item)
  151. err = global.DEFAULT_DmSQL.Raw(sql, pars...).Find(&item).Error
  152. return
  153. }
  154. func GetEdbInfoById(edbInfoId int) (item *EdbInfo, err error) {
  155. //o := orm.NewOrm()
  156. sql := ` SELECT * FROM edb_info WHERE edb_info_id=? `
  157. //err = o.Raw(sql, edbInfoId).QueryRow(&item)
  158. err = global.DEFAULT_DmSQL.Raw(sql, edbInfoId).First(&item).Error
  159. return
  160. }
  161. func GetQuarterEdbInfo() (item []*EdbInfo, err error) {
  162. //o := orm.NewOrm()
  163. sql := ` SELECT c.* FROM chart_info AS a
  164. INNER JOIN chart_edb_mapping AS b ON a.chart_info_id=b.chart_info_id
  165. INNER JOIN edb_info AS c ON b.edb_info_id=c.edb_info_id
  166. WHERE a.chart_type=2
  167. GROUP BY b.edb_info_id
  168. ORDER BY b.edb_info_id ASC `
  169. //_, err = o.Raw(sql).QueryRows(&item)
  170. err = global.DEFAULT_DmSQL.Raw(sql).Find(&item).Error
  171. return
  172. }
  173. func ResetEdbInfoIsUpdate() (err error) {
  174. //o := orm.NewOrm()
  175. sql := ` UPDATE edb_info SET is_update=1 `
  176. //_, err = o.Raw(sql).Exec()
  177. err = global.DEFAULT_DmSQL.Exec(sql).Error
  178. return
  179. }
  180. // GetEdbInfoCalculateListByCondition 获取指标关系列表
  181. func GetEdbInfoCalculateListByCondition(condition string, pars []interface{}) (items []*EdbInfoCalculateMapping, err error) {
  182. //o := orm.NewOrm()
  183. //calculateTableName := GetEdbInfoCalculateTableName(source)
  184. //if calculateTableName == "" {
  185. // err = errors.New("无效的表名")
  186. // return
  187. //}
  188. sql := ` SELECT * FROM edb_info_calculate_mapping WHERE 1=1 `
  189. //sql = fmt.Sprintf(sql, calculateTableName)
  190. if condition != "" {
  191. sql += condition
  192. }
  193. //_, err = o.Raw(sql, pars).QueryRows(&items)
  194. err = global.DEFAULT_DmSQL.Raw(sql).Find(&items).Error
  195. return
  196. }
  197. func DeleteEdbDataByIdAndSource(edbDataId, source, subSource int) (err error) {
  198. sql := ` DELETE FROM %s WHERE edb_data_id=? `
  199. tableName := GetEdbDataTableName(source, subSource)
  200. sql = fmt.Sprintf(sql, tableName)
  201. //o := orm.NewOrm()
  202. //_, err = o.Raw(sql, edbDataId).Exec()
  203. err = global.DEFAULT_DmSQL.Exec(sql, edbDataId).Error
  204. return
  205. }
  206. type EdbInfoClassify struct {
  207. EdbInfoId int `orm:"column(edb_info_id);pk"`
  208. SourceName string `description:"来源名称"`
  209. Source int `description:"来源id"`
  210. EdbCode string `description:"指标编码"`
  211. ClassifyId int `description:"分类id"`
  212. SysUserId int
  213. SysUserRealName string
  214. UniqueCode string `description:"指标唯一编码"`
  215. CreateTime time.Time
  216. ModifyTime time.Time
  217. }
  218. // GetAllEdbInfoClassifyListByCondition
  219. // @Description: 获取指标与分类的关系列表
  220. // @author: Roc
  221. // @datetime 2024-02-29 10:55:38
  222. // @param condition string
  223. // @param pars []interface{}
  224. // @return item []*EdbInfoUpdateLog
  225. // @return err error
  226. func GetAllEdbInfoClassifyListByCondition(condition string, pars []interface{}) (item []*EdbInfoClassify, err error) {
  227. //o := orm.NewOrmUsingDB("data")
  228. sql := ` SELECT * FROM edb_info WHERE 1=1 `
  229. if condition != "" {
  230. sql += condition
  231. }
  232. sql += `ORDER BY edb_info_id ASC `
  233. //_, err = o.Raw(sql, pars).QueryRows(&item)
  234. err = global.DmSQL["data"].Raw(sql, pars...).Find(&item).Error
  235. return
  236. }
  237. // GetEdbInfoItemByCodeAndSource
  238. // @Description: 根据指标编码和来源id获取指标信息
  239. // @author: Roc
  240. // @datetime 2024-03-11 16:26:23
  241. // @param source int
  242. // @param edbCode string
  243. // @return item *EdbInfo
  244. // @return err error
  245. func GetEdbInfoItemByCodeAndSource(source int, edbCode string) (item *EdbInfoItem, err error) {
  246. //o := orm.NewOrm()
  247. sql := ` SELECT * FROM edb_info WHERE edb_code=? AND source = ?`
  248. //err = o.Raw(sql, source, edbCode).QueryRow(&item)
  249. err = global.DEFAULT_DmSQL.Raw(sql, source, edbCode).First(&item).Error
  250. return
  251. }
  252. // GetEdbInfoMaxModifyTime
  253. // @Description: 根据指标来源和编码获取该指标数据最晚修改时间
  254. // @author: Roc
  255. // @datetime 2024-03-11 17:01:01
  256. // @param source int
  257. // @param edbCode string
  258. // @return modifyTime string
  259. // @return err error
  260. func GetEdbInfoMaxModifyTime(source, subSource int, edbCode string) (modifyTime string, err error) {
  261. //o := orm.NewOrmUsingDB("data")
  262. tableName := GetEdbDataTableName(source, subSource)
  263. if tableName == "" {
  264. err = errors.New("无效的表名称:source:" + strconv.Itoa(source))
  265. return
  266. }
  267. sql := ` SELECT MAX(modify_time) AS modify_time FROM %s WHERE edb_code=? `
  268. sql = fmt.Sprintf(sql, tableName)
  269. //err = o.Raw(sql, edbCode).QueryRow(&modifyTime)
  270. err = global.DmSQL["data"].Raw(sql, edbCode).Scan(&modifyTime).Error
  271. return
  272. }
  273. func GetEdbInfoPageByCondition(condition string, pars []interface{}, startPage, pageSize int) (item []*EdbInfo, err error) {
  274. //o := orm.NewOrm()
  275. sql := ` SELECT * FROM edb_info WHERE 1=1 `
  276. if condition != "" {
  277. sql += condition
  278. }
  279. sql += ` LIMIT ?,? `
  280. //_, err = o.Raw(sql, pars, startPage, pageSize).QueryRows(&item)
  281. pars = append(pars, startPage, pageSize)
  282. err = global.DEFAULT_DmSQL.Raw(sql, pars...).Find(&item).Error
  283. return
  284. }
  285. func GetEdbInfoCountByCondition(condition string, pars []interface{}) (total int64, err error) {
  286. //o := orm.NewOrm()
  287. sql := ` SELECT count(*) FROM edb_info WHERE 1=1 `
  288. if condition != "" {
  289. sql += condition
  290. }
  291. //err = o.Raw(sql, pars).QueryRow(&total)
  292. err = global.DEFAULT_DmSQL.Raw(sql, pars...).Scan(&total).Error
  293. return
  294. }
  295. func ModifyEdbUpdateStatus(edbIdList []int, indexCodeList []string, calculateEdbInfoIds []int) (err error) {
  296. idNum := len(edbIdList)
  297. if idNum <= 0 {
  298. return
  299. }
  300. //o, err := orm.NewOrmUsingDB("data").Begin()
  301. o := global.DmSQL["data"].Begin()
  302. if err != nil {
  303. return
  304. }
  305. defer func() {
  306. if err != nil {
  307. _ = o.Rollback()
  308. return
  309. }
  310. _ = o.Commit()
  311. }()
  312. // 更改指标的更新状态
  313. sql := ` UPDATE edb_info SET no_update = 1 WHERE source in (?, ?) AND edb_info_id IN (` + utils.GetOrmInReplace(idNum) + `) AND no_update = 0`
  314. //_, err = o.Raw(sql, utils.DATA_SOURCE_MYSTEEL_CHEMICAL, utils.DATA_SOURCE_WIND, edbIdList).Exec()
  315. err = o.Exec(sql, utils.DATA_SOURCE_MYSTEEL_CHEMICAL, utils.DATA_SOURCE_WIND, edbIdList).Error
  316. if err != nil {
  317. return
  318. }
  319. // 更改钢联化工指标更新状态
  320. if len(indexCodeList) > 0 {
  321. // 更改数据源的更新状态
  322. sql = ` UPDATE base_from_mysteel_chemical_index SET is_stop = 1 WHERE index_code IN (` + utils.GetOrmInReplace(len(indexCodeList)) + `) and is_stop=0`
  323. //_, err = o.Raw(sql, indexCodeList).Exec()
  324. err = o.Exec(sql, indexCodeList).Error
  325. if err != nil {
  326. return
  327. }
  328. }
  329. // 更新相关的计算指标状态
  330. if len(calculateEdbInfoIds) > 0 {
  331. // 批量更新相关联的指标ID
  332. sql = ` UPDATE edb_info SET no_update = 1 WHERE edb_info_id IN (` + utils.GetOrmInReplace(len(calculateEdbInfoIds)) + `) AND no_update = 0`
  333. //_, err = o.Raw(sql, calculateEdbInfoIds).Exec()
  334. err = o.Exec(sql, calculateEdbInfoIds).Error
  335. if err != nil {
  336. return
  337. }
  338. }
  339. return
  340. }
  341. // GetEdbInfoByIdList 根据指标id集合 获取 指标列表
  342. func GetEdbInfoByIdList(edbInfoIdList []int) (items []*EdbInfo, err error) {
  343. num := len(edbInfoIdList)
  344. if num <= 0 {
  345. return
  346. }
  347. //o := orm.NewOrmUsingDB("data")
  348. sql := ` SELECT * FROM edb_info WHERE edb_info_id in (` + utils.GetOrmInReplace(num) + `) `
  349. //_, err = o.Raw(sql, edbInfoIdList).QueryRows(&items)
  350. err = global.DmSQL["data"].Raw(sql, edbInfoIdList).Find(&items).Error
  351. return
  352. }