ai_predict_model_index.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. package data_manage
  2. import (
  3. "eta/eta_api/global"
  4. "eta/eta_api/models/data_manage"
  5. "eta/eta_api/utils"
  6. "fmt"
  7. "github.com/rdlucklib/rdluck_tools/paging"
  8. "strconv"
  9. "strings"
  10. "time"
  11. )
  12. // AiPredictModelIndex AI预测模型标的
  13. type AiPredictModelIndex struct {
  14. AiPredictModelIndexId int `orm:"column(ai_predict_model_index_id);pk" gorm:"primaryKey"`
  15. IndexName string `description:"标的名称"`
  16. IndexCode string `description:"自生成的指标编码"`
  17. ClassifyId int `description:"分类ID"`
  18. ModelFramework string `description:"模型框架"`
  19. PredictDate time.Time `description:"预测日期"`
  20. PredictValue float64 `description:"预测值"`
  21. PredictFrequency string `description:"预测频度"`
  22. DirectionAccuracy string `description:"方向准确度"`
  23. AbsoluteDeviation string `description:"绝对偏差"`
  24. ExtraConfig string `description:"模型参数"`
  25. Sort int `description:"排序"`
  26. SysUserId int `description:"创建人ID"`
  27. SysUserRealName string `description:"创建人姓名"`
  28. LeftMin string `description:"图表左侧最小值"`
  29. LeftMax string `description:"图表左侧最大值"`
  30. CreateTime time.Time `description:"创建时间"`
  31. ModifyTime time.Time `description:"修改时间"`
  32. }
  33. func (m *AiPredictModelIndex) TableName() string {
  34. return "ai_predict_model_index"
  35. }
  36. type AiPredictModelIndexCols struct {
  37. PrimaryId string
  38. IndexName string
  39. IndexCode string
  40. ClassifyId string
  41. ModelFramework string
  42. PredictDate string
  43. PredictValue string
  44. DirectionAccuracy string
  45. AbsoluteDeviation string
  46. ExtraConfig string
  47. Sort string
  48. SysUserId string
  49. SysUserRealName string
  50. LeftMin string
  51. LeftMax string
  52. CreateTime string
  53. ModifyTime string
  54. }
  55. func (m *AiPredictModelIndex) Cols() AiPredictModelIndexCols {
  56. return AiPredictModelIndexCols{
  57. PrimaryId: "ai_predict_model_index_id",
  58. IndexName: "index_name",
  59. IndexCode: "index_code",
  60. ClassifyId: "classify_id",
  61. ModelFramework: "model_framework",
  62. PredictDate: "predict_date",
  63. PredictValue: "predict_value",
  64. DirectionAccuracy: "direction_accuracy",
  65. AbsoluteDeviation: "absolute_deviation",
  66. ExtraConfig: "extra_config",
  67. Sort: "sort",
  68. SysUserId: "sys_user_id",
  69. SysUserRealName: "sys_user_real_name",
  70. LeftMin: "left_min",
  71. LeftMax: "left_max",
  72. CreateTime: "create_time",
  73. ModifyTime: "modify_time",
  74. }
  75. }
  76. func (m *AiPredictModelIndex) Create() (err error) {
  77. o := global.DbMap[utils.DbNameIndex]
  78. err = o.Create(m).Error
  79. return
  80. }
  81. func (m *AiPredictModelIndex) CreateMulti(items []*AiPredictModelIndex) (err error) {
  82. if len(items) == 0 {
  83. return
  84. }
  85. o := global.DbMap[utils.DbNameIndex]
  86. err = o.CreateInBatches(items, utils.MultiAddNum).Error
  87. return
  88. }
  89. func (m *AiPredictModelIndex) Update(cols []string) (err error) {
  90. o := global.DbMap[utils.DbNameIndex]
  91. err = o.Select(cols).Updates(m).Error
  92. return
  93. }
  94. func (m *AiPredictModelIndex) Remove() (err error) {
  95. o := global.DbMap[utils.DbNameIndex]
  96. sql := fmt.Sprintf(`DELETE FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.Cols().PrimaryId)
  97. err = o.Exec(sql, m.AiPredictModelIndexId).Error
  98. return
  99. }
  100. func (m *AiPredictModelIndex) MultiRemove(ids []int) (err error) {
  101. if len(ids) == 0 {
  102. return
  103. }
  104. o := global.DbMap[utils.DbNameIndex]
  105. sql := fmt.Sprintf(`DELETE FROM %s WHERE %s IN (%s)`, m.TableName(), m.Cols().PrimaryId, utils.GetOrmInReplace(len(ids)))
  106. err = o.Exec(sql, ids).Error
  107. return
  108. }
  109. func (m *AiPredictModelIndex) RemoveByCondition(condition string, pars []interface{}) (err error) {
  110. if condition == "" {
  111. return
  112. }
  113. o := global.DbMap[utils.DbNameIndex]
  114. sql := fmt.Sprintf(`DELETE FROM %s WHERE %s`, m.TableName(), condition)
  115. err = o.Exec(sql, pars...).Error
  116. return
  117. }
  118. func (m *AiPredictModelIndex) GetItemById(id int) (item *AiPredictModelIndex, err error) {
  119. o := global.DbMap[utils.DbNameIndex]
  120. sql := fmt.Sprintf(`SELECT * FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.Cols().PrimaryId)
  121. err = o.Raw(sql, id).First(&item).Error
  122. return
  123. }
  124. func (m *AiPredictModelIndex) GetItemByCondition(condition string, pars []interface{}, orderRule string) (item *AiPredictModelIndex, err error) {
  125. o := global.DbMap[utils.DbNameIndex]
  126. order := ``
  127. if orderRule != "" {
  128. order = ` ORDER BY ` + orderRule
  129. }
  130. sql := fmt.Sprintf(`SELECT * FROM %s WHERE 1=1 %s %s LIMIT 1`, m.TableName(), condition, order)
  131. err = o.Raw(sql, pars...).First(&item).Error
  132. return
  133. }
  134. func (m *AiPredictModelIndex) GetCountByCondition(condition string, pars []interface{}) (count int, err error) {
  135. o := global.DbMap[utils.DbNameIndex]
  136. sql := fmt.Sprintf(`SELECT COUNT(1) FROM %s WHERE 1=1 %s`, m.TableName(), condition)
  137. err = o.Raw(sql, pars...).Scan(&count).Error
  138. return
  139. }
  140. func (m *AiPredictModelIndex) GetItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string) (items []*AiPredictModelIndex, err error) {
  141. o := global.DbMap[utils.DbNameIndex]
  142. fields := strings.Join(fieldArr, ",")
  143. if len(fieldArr) == 0 {
  144. fields = `*`
  145. }
  146. order := fmt.Sprintf(`ORDER BY %s DESC`, m.Cols().CreateTime)
  147. if orderRule != "" {
  148. order = ` ORDER BY ` + orderRule
  149. }
  150. sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s`, fields, m.TableName(), condition, order)
  151. err = o.Raw(sql, pars...).Find(&items).Error
  152. return
  153. }
  154. func (m *AiPredictModelIndex) GetPageItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, startSize, pageSize int) (items []*AiPredictModelIndex, err error) {
  155. o := global.DbMap[utils.DbNameIndex]
  156. fields := strings.Join(fieldArr, ",")
  157. if len(fieldArr) == 0 {
  158. fields = `*`
  159. }
  160. order := fmt.Sprintf(`ORDER BY %s DESC`, m.Cols().CreateTime)
  161. if orderRule != "" {
  162. order = ` ORDER BY ` + orderRule
  163. }
  164. sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s LIMIT ?,?`, fields, m.TableName(), condition, order)
  165. pars = append(pars, startSize, pageSize)
  166. err = o.Raw(sql, pars...).Find(&items).Error
  167. return
  168. }
  169. // AiPredictModelIndexItem AI预测模型标的信息
  170. type AiPredictModelIndexItem struct {
  171. IndexId int `description:"标的ID"`
  172. IndexName string `description:"标的名称"`
  173. IndexCode string `description:"自生成的指标编码"`
  174. ClassifyId int `description:"分类ID"`
  175. ClassifyName string `description:"分类名称"`
  176. ModelFramework string `description:"模型框架"`
  177. PredictDate string `description:"预测日期"`
  178. PredictValue float64 `description:"预测值"`
  179. PredictFrequency string `description:"预测频度"`
  180. DirectionAccuracy string `description:"方向准确度"`
  181. AbsoluteDeviation string `description:"绝对偏差"`
  182. ExtraConfig string `description:"模型参数"`
  183. SysUserId int `description:"创建人ID"`
  184. SysUserRealName string `description:"创建人姓名"`
  185. CreateTime string `description:"创建时间"`
  186. ModifyTime string `description:"修改时间"`
  187. SearchText string `description:"搜索结果(含高亮)"`
  188. }
  189. func (m *AiPredictModelIndex) Format2Item() (item *AiPredictModelIndexItem) {
  190. item = new(AiPredictModelIndexItem)
  191. item.IndexId = m.AiPredictModelIndexId
  192. item.IndexName = m.IndexName
  193. item.IndexCode = m.IndexCode
  194. item.ClassifyId = m.ClassifyId
  195. item.ModelFramework = m.ModelFramework
  196. item.PredictDate = utils.TimeTransferString(utils.FormatDate, m.PredictDate)
  197. item.PredictValue = m.PredictValue
  198. item.PredictFrequency = m.PredictFrequency
  199. item.DirectionAccuracy = m.DirectionAccuracy
  200. item.AbsoluteDeviation = m.AbsoluteDeviation
  201. item.ExtraConfig = m.ExtraConfig
  202. item.SysUserId = m.SysUserId
  203. item.SysUserRealName = m.SysUserRealName
  204. item.CreateTime = utils.TimeTransferString(utils.FormatDateTime, m.CreateTime)
  205. item.ModifyTime = utils.TimeTransferString(utils.FormatDateTime, m.ModifyTime)
  206. return
  207. }
  208. type AiPredictModelIndexPageListResp struct {
  209. Paging *paging.PagingItem
  210. List []*AiPredictModelIndexItem `description:"列表"`
  211. }
  212. // RemoveIndexAndData 删除标的及数据
  213. func (m *AiPredictModelIndex) RemoveIndexAndData(indexId int, chartIds []int) (err error) {
  214. o := global.DbMap[utils.DbNameIndex]
  215. tx := o.Begin()
  216. defer func() {
  217. if err != nil {
  218. _ = tx.Rollback()
  219. return
  220. }
  221. _ = tx.Commit()
  222. }()
  223. sql := `DELETE FROM ai_predict_model_index WHERE ai_predict_model_index_id = ? LIMIT 1`
  224. e := tx.Exec(sql, indexId).Error
  225. if e != nil {
  226. err = fmt.Errorf("remove index err: %v", e)
  227. return
  228. }
  229. sql = ` DELETE FROM ai_predict_model_data WHERE ai_predict_model_index_id = ?`
  230. e = tx.Exec(sql, indexId).Error
  231. if e != nil {
  232. err = fmt.Errorf("remove index data err: %v", e)
  233. return
  234. }
  235. // 删除图表
  236. if len(chartIds) == 0 {
  237. return
  238. }
  239. sql = ` DELETE FROM chart_info WHERE chart_info_id IN ?`
  240. if e = tx.Exec(sql, chartIds).Error; e != nil {
  241. err = fmt.Errorf("remove charts err: %v", e)
  242. return
  243. }
  244. sql = ` DELETE FROM chart_edb_mapping WHERE chart_info_id IN ?`
  245. if e = tx.Exec(sql, chartIds).Error; e != nil {
  246. err = fmt.Errorf("remove chart mappings err: %v", e)
  247. return
  248. }
  249. return
  250. }
  251. // UpdateAiPredictModelIndexSortByClassifyId 根据分类id更新排序
  252. func UpdateAiPredictModelIndexSortByClassifyId(classifyId, nowSort int, prevEdbInfoId int, updateSort string) (err error) {
  253. o := global.DbMap[utils.DbNameIndex]
  254. sql := ` UPDATE ai_predict_model_index SET sort = ` + updateSort + ` WHERE classify_id = ?`
  255. if prevEdbInfoId > 0 {
  256. sql += ` AND ( sort > ? or ( ai_predict_model_index_id > ` + fmt.Sprint(prevEdbInfoId) + ` and sort=` + fmt.Sprint(nowSort) + ` )) `
  257. } else {
  258. sql += ` AND ( sort > ? )`
  259. }
  260. err = o.Exec(sql, classifyId, nowSort).Error
  261. return
  262. }
  263. // GetFirstAiPredictModelIndexByClassifyId 获取当前分类下,且排序数相同 的排序第一条的数据
  264. func GetFirstAiPredictModelIndexByClassifyId(classifyId int) (item *AiPredictModelIndex, err error) {
  265. o := global.DbMap[utils.DbNameIndex]
  266. sql := ` SELECT * FROM ai_predict_model_index WHERE classify_id = ? order by sort asc,ai_predict_model_index_id asc limit 1`
  267. err = o.Raw(sql, classifyId).First(&item).Error
  268. return
  269. }
  270. type AiPredictModelImportData struct {
  271. Index *AiPredictModelIndex
  272. Data []*AiPredictModelData
  273. Charts []*AiPredictModelImportCharts
  274. }
  275. type AiPredictModelImportCharts struct {
  276. ChartInfo *data_manage.ChartInfo
  277. EdbMappings []*data_manage.ChartEdbMapping
  278. }
  279. // ImportIndexAndData 导入数据
  280. func (m *AiPredictModelIndex) ImportIndexAndData(createIndexes, updateIndexes []*AiPredictModelImportData, updateCols []string) (chartIds []int, err error) {
  281. if len(createIndexes) == 0 && len(updateIndexes) == 0 {
  282. return
  283. }
  284. o := global.DbMap[utils.DbNameIndex]
  285. tx := o.Begin()
  286. defer func() {
  287. if err != nil {
  288. _ = tx.Rollback()
  289. return
  290. }
  291. _ = tx.Commit()
  292. }()
  293. if len(updateIndexes) > 0 {
  294. for _, v := range updateIndexes {
  295. // 更新指标
  296. e := tx.Select(updateCols).Updates(v.Index).Error
  297. if e != nil {
  298. err = fmt.Errorf("update index err: %v", e)
  299. return
  300. }
  301. for _, d := range v.Data {
  302. d.AiPredictModelIndexId = v.Index.AiPredictModelIndexId
  303. d.IndexCode = v.Index.IndexCode
  304. d.DataTimestamp = d.DataTime.UnixNano() / 1e6
  305. }
  306. // 清空指标并新增
  307. sql := `DELETE FROM ai_predict_model_data WHERE ai_predict_model_index_id = ?`
  308. e = tx.Exec(sql, v.Index.AiPredictModelIndexId).Error
  309. if e != nil {
  310. err = fmt.Errorf("clear index data err: %v", e)
  311. return
  312. }
  313. e = tx.CreateInBatches(v.Data, utils.MultiAddNum).Error
  314. if e != nil {
  315. err = fmt.Errorf("insert index data err: %v", e)
  316. return
  317. }
  318. }
  319. }
  320. if len(createIndexes) > 0 {
  321. for _, v := range createIndexes {
  322. if e := tx.Create(v.Index).Error; e != nil {
  323. err = fmt.Errorf("insert index err: %v", e)
  324. return
  325. }
  326. indexId := v.Index.AiPredictModelIndexId
  327. for _, d := range v.Data {
  328. d.AiPredictModelIndexId = indexId
  329. d.IndexCode = v.Index.IndexCode
  330. d.DataTimestamp = d.DataTime.UnixNano() / 1e6
  331. }
  332. if e := tx.CreateInBatches(v.Data, utils.MultiAddNum).Error; e != nil {
  333. err = fmt.Errorf("insert index data err: %v", e)
  334. return
  335. }
  336. // 图表
  337. if len(v.Charts) == 0 {
  338. continue
  339. }
  340. for _, ct := range v.Charts {
  341. if e := tx.Create(ct.ChartInfo).Error; e != nil {
  342. err = fmt.Errorf("insert chart err: %v", e)
  343. return
  344. }
  345. for _, cm := range ct.EdbMappings {
  346. cm.ChartInfoId = ct.ChartInfo.ChartInfoId
  347. cm.EdbInfoId = indexId
  348. time.Sleep(time.Microsecond)
  349. cm.UniqueCode = utils.MD5(fmt.Sprint(utils.CHART_PREFIX, "_", indexId, "_", strconv.FormatInt(time.Now().UnixNano(), 10)))
  350. }
  351. if e := tx.CreateInBatches(ct.EdbMappings, utils.MultiAddNum).Error; e != nil {
  352. err = fmt.Errorf("insert chart mapping err: %v", e)
  353. return
  354. }
  355. chartIds = append(chartIds, ct.ChartInfo.ChartInfoId)
  356. }
  357. }
  358. }
  359. return
  360. }
  361. type AiPredictModelDetailResp struct {
  362. TableData []*AiPredictModelDataItem `description:"表格数据"`
  363. ChartView *data_manage.ChartInfoDetailResp `description:"月度预测数据图表"`
  364. DailyChartView *data_manage.ChartInfoDetailResp `description:"日度预测数据图表"`
  365. }
  366. type AiPredictModelIndexSaveReq struct {
  367. IndexId int `description:"指标ID"`
  368. MonthlyChart *AiPredictModelIndexSaveChart `description:"月度图表信息"`
  369. DailyChart *AiPredictModelIndexSaveChart `description:"日度图表信息"`
  370. }
  371. type AiPredictModelIndexSaveChart struct {
  372. LeftMin string `description:"图表左侧最小值"`
  373. LeftMax string `description:"图表左侧最大值"`
  374. Unit string `description:"单位"`
  375. }
  376. type AiPredictModelIndexExtraConfig struct {
  377. MonthlyChart struct {
  378. LeftMin string `description:"图表左侧最小值"`
  379. LeftMax string `description:"图表左侧最大值"`
  380. Unit string `description:"单位"`
  381. }
  382. DailyChart struct {
  383. LeftMin string `description:"图表左侧最小值"`
  384. LeftMax string `description:"图表左侧最大值"`
  385. Unit string `description:"单位"`
  386. PredictLegendName string `description:"预测图例的名称(通常为Predicted)"`
  387. }
  388. }