base_from_radish_research_index.go 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. package data_manage
  2. import (
  3. "eta/eta_api/global"
  4. "eta/eta_api/utils"
  5. "fmt"
  6. "strings"
  7. "time"
  8. "github.com/rdlucklib/rdluck_tools/paging"
  9. )
  10. // BaseFromRadishResearchIndex 萝卜投研数据
  11. type BaseFromRadishResearchIndex struct {
  12. BaseFromRadishResearchIndexId int `orm:"column(base_from_radish_research_index_id);pk" gorm:"primaryKey"`
  13. IndexCode string `description:"指标编码"`
  14. IndexName string `description:"指标名称"`
  15. ClassifyId int `description:"分类ID"`
  16. Unit string `description:"单位"`
  17. Source string `description:"数据来源"`
  18. Frequency string `description:"频度"`
  19. StartDate time.Time `description:"开始日期"`
  20. EndDate time.Time `description:"结束日期"`
  21. Sort int `description:"排序"`
  22. IsStop int `description:"是否停更:0-否;1-停更"`
  23. TerminalCode string `description:"所属终端编码"`
  24. EdbExist int `description:"指标库是否已添加指标:0-否;1-是"`
  25. FilePath string `description:"文件存储路径"`
  26. LatestValue float64 `description:"数据最新值"`
  27. CreateTime time.Time `description:"创建时间"`
  28. ModifyTime time.Time `description:"修改时间"`
  29. }
  30. func (m *BaseFromRadishResearchIndex) TableName() string {
  31. return "base_from_radish_research_index"
  32. }
  33. type BaseFromRadishResearchIndexCols struct {
  34. PrimaryId string
  35. IndexCode string
  36. IndexName string
  37. ClassifyId string
  38. Unit string
  39. Source string
  40. Frequency string
  41. StartDate string
  42. EndDate string
  43. Sort string
  44. IsStop string
  45. TerminalCode string
  46. EdbExist string
  47. FilePath string
  48. LatestValue string
  49. CreateTime string
  50. ModifyTime string
  51. }
  52. func (m *BaseFromRadishResearchIndex) Cols() BaseFromRadishResearchIndexCols {
  53. return BaseFromRadishResearchIndexCols{
  54. PrimaryId: "base_from_radish_research_index_id",
  55. IndexCode: "index_code",
  56. IndexName: "index_name",
  57. ClassifyId: "classify_id",
  58. Unit: "unit",
  59. Source: "source",
  60. Frequency: "frequency",
  61. StartDate: "start_date",
  62. EndDate: "end_date",
  63. Sort: "sort",
  64. IsStop: "is_stop",
  65. EdbExist: "edb_exist",
  66. TerminalCode: "terminal_code",
  67. FilePath: "file_path",
  68. LatestValue: "latest_value",
  69. CreateTime: "create_time",
  70. ModifyTime: "modify_time",
  71. }
  72. }
  73. func (m *BaseFromRadishResearchIndex) Create() (err error) {
  74. o := global.DbMap[utils.DbNameIndex]
  75. err = o.Create(m).Error
  76. return
  77. }
  78. func (m *BaseFromRadishResearchIndex) CreateMulti(items []*BaseFromRadishResearchIndex) (err error) {
  79. if len(items) == 0 {
  80. return
  81. }
  82. o := global.DbMap[utils.DbNameIndex]
  83. err = o.CreateInBatches(items, utils.MultiAddNum).Error
  84. return
  85. }
  86. func (m *BaseFromRadishResearchIndex) Update(cols []string) (err error) {
  87. o := global.DbMap[utils.DbNameIndex]
  88. err = o.Select(cols).Updates(m).Error
  89. return
  90. }
  91. func (m *BaseFromRadishResearchIndex) Remove() (err error) {
  92. o := global.DbMap[utils.DbNameIndex]
  93. sql := fmt.Sprintf(`DELETE FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.Cols().PrimaryId)
  94. err = o.Exec(sql, m.BaseFromRadishResearchIndexId).Error
  95. return
  96. }
  97. func (m *BaseFromRadishResearchIndex) MultiRemove(ids []int) (err error) {
  98. if len(ids) == 0 {
  99. return
  100. }
  101. o := global.DbMap[utils.DbNameIndex]
  102. sql := fmt.Sprintf(`DELETE FROM %s WHERE %s IN (%s)`, m.TableName(), m.Cols().PrimaryId, utils.GetOrmInReplace(len(ids)))
  103. err = o.Exec(sql, ids).Error
  104. return
  105. }
  106. func (m *BaseFromRadishResearchIndex) RemoveByCondition(condition string, pars []interface{}) (err error) {
  107. if condition == "" {
  108. return
  109. }
  110. o := global.DbMap[utils.DbNameIndex]
  111. sql := fmt.Sprintf(`DELETE FROM %s WHERE %s`, m.TableName(), condition)
  112. err = o.Exec(sql, pars...).Error
  113. return
  114. }
  115. func (m *BaseFromRadishResearchIndex) GetItemById(id int) (item *BaseFromRadishResearchIndex, err error) {
  116. o := global.DbMap[utils.DbNameIndex]
  117. sql := fmt.Sprintf(`SELECT * FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.Cols().PrimaryId)
  118. err = o.Raw(sql, id).First(&item).Error
  119. return
  120. }
  121. func (m *BaseFromRadishResearchIndex) GetItemByCondition(condition string, pars []interface{}, orderRule string) (item *BaseFromRadishResearchIndex, err error) {
  122. o := global.DbMap[utils.DbNameIndex]
  123. order := ``
  124. if orderRule != "" {
  125. order = ` ORDER BY ` + orderRule
  126. }
  127. sql := fmt.Sprintf(`SELECT * FROM %s WHERE 1=1 %s %s LIMIT 1`, m.TableName(), condition, order)
  128. err = o.Raw(sql, pars...).First(&item).Error
  129. return
  130. }
  131. func (m *BaseFromRadishResearchIndex) GetCountByCondition(condition string, pars []interface{}) (count int, err error) {
  132. o := global.DbMap[utils.DbNameIndex]
  133. sql := fmt.Sprintf(`SELECT COUNT(1) FROM %s WHERE 1=1 %s`, m.TableName(), condition)
  134. err = o.Raw(sql, pars...).Scan(&count).Error
  135. return
  136. }
  137. func (m *BaseFromRadishResearchIndex) GetItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string) (items []*BaseFromRadishResearchIndex, err error) {
  138. o := global.DbMap[utils.DbNameIndex]
  139. fields := strings.Join(fieldArr, ",")
  140. if len(fieldArr) == 0 {
  141. fields = `*`
  142. }
  143. order := fmt.Sprintf(`ORDER BY %s DESC`, m.Cols().CreateTime)
  144. if orderRule != "" {
  145. order = ` ORDER BY ` + orderRule
  146. }
  147. sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s`, fields, m.TableName(), condition, order)
  148. err = o.Raw(sql, pars...).Find(&items).Error
  149. return
  150. }
  151. func (m *BaseFromRadishResearchIndex) GetPageItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, startSize, pageSize int) (items []*BaseFromRadishResearchIndex, err error) {
  152. o := global.DbMap[utils.DbNameIndex]
  153. fields := strings.Join(fieldArr, ",")
  154. if len(fieldArr) == 0 {
  155. fields = `*`
  156. }
  157. order := fmt.Sprintf(`ORDER BY %s DESC`, m.Cols().CreateTime)
  158. if orderRule != "" {
  159. order = ` ORDER BY ` + orderRule
  160. }
  161. sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s LIMIT ?,?`, fields, m.TableName(), condition, order)
  162. pars = append(pars, startSize, pageSize)
  163. err = o.Raw(sql, pars...).Find(&items).Error
  164. return
  165. }
  166. // BaseFromRadishResearchIndexItem 萝卜投研数据信息
  167. type BaseFromRadishResearchIndexItem struct {
  168. IndexId int `description:"指标ID"`
  169. ClassifyId int `description:"分类ID"`
  170. IndexCode string `description:"指标编码"`
  171. IndexName string `description:"指标名称"`
  172. Unit string `description:"单位"`
  173. Source string `description:"数据来源"`
  174. Frequency string `description:"频度"`
  175. StartDate string `description:"开始日期"`
  176. EndDate string `description:"结束日期"`
  177. Sort int `description:"排序"`
  178. LatestValue float64 `description:"最新值"`
  179. EdbExist int `description:"是否加入指标:0-未加入;1-已加入"`
  180. CreateTime string `description:"创建时间"`
  181. ModifyTime string `description:"修改时间"`
  182. }
  183. func (m *BaseFromRadishResearchIndex) Format2Item() (item *BaseFromRadishResearchIndexItem) {
  184. item = new(BaseFromRadishResearchIndexItem)
  185. item.ClassifyId = m.ClassifyId
  186. item.IndexId = m.BaseFromRadishResearchIndexId
  187. item.IndexCode = m.IndexCode
  188. item.IndexName = m.IndexName
  189. item.Unit = m.Unit
  190. item.Source = m.Source
  191. item.Frequency = m.Frequency
  192. item.StartDate = utils.TimeTransferString(utils.FormatDate, m.StartDate)
  193. item.EndDate = utils.TimeTransferString(utils.FormatDate, m.EndDate)
  194. item.Sort = m.Sort
  195. item.LatestValue = m.LatestValue
  196. item.EdbExist = m.EdbExist
  197. item.CreateTime = utils.TimeTransferString(utils.FormatDateTime, m.CreateTime)
  198. item.ModifyTime = utils.TimeTransferString(utils.FormatDateTime, m.ModifyTime)
  199. return
  200. }
  201. // BaseFromRadishResearchIndexDetail 指标详情
  202. type BaseFromRadishResearchIndexDetail struct {
  203. *BaseFromRadishResearchIndexItem
  204. DataList []*BaseFromRadishResearchDataItem
  205. }
  206. func (m *BaseFromRadishResearchIndex) UpdateClassifyMulti(ids []int, classifyId int) (err error) {
  207. if len(ids) == 0 || classifyId <= 0 {
  208. return
  209. }
  210. o := global.DbMap[utils.DbNameIndex]
  211. sql := fmt.Sprintf(`UPDATE %s SET %s = ?, %s = NOW() WHERE %s IN (%s)`, m.TableName(), m.Cols().ClassifyId, m.Cols().ModifyTime, m.Cols().PrimaryId, utils.GetOrmInReplace(len(ids)))
  212. err = o.Exec(sql, classifyId, ids).Error
  213. return
  214. }
  215. // RadishResearchSearchEdbReq 搜索指标请求体
  216. //type RadishResearchSearchEdbReq struct {
  217. // StockCode string `form:"StockCode" description:"证券代码" `
  218. // EdbCode string `form:"EdbCode" description:"指标代码"`
  219. // StartTime string `form:"StartTime" description:"每日数据开始时间"`
  220. // EndTime string `form:"EndTime" description:"每日数据结束时间"`
  221. // Interval int `form:"Interval" description:"时间周期"`
  222. // Fill string `form:"Fill" description:"非交易间隔处理"`
  223. // CPS string `form:"CPS" description:"复权方式"`
  224. // BaseDate string `form:"BaseDate" description:"复权基点"`
  225. //}
  226. // RadishResearchExistCheckResp 指标存在校验响应
  227. //type RadishResearchExistCheckResp struct {
  228. // ExistAll bool `description:"指标是否全部存在: true-是; false-否"`
  229. // ExistIndex []RadishResearchExistCheckIndex `description:"已存在的指标信息"`
  230. //}
  231. // RadishResearchExistCheckIndex 指标存在校验-指标信息
  232. //type RadishResearchExistCheckIndex struct {
  233. // IndexId int `description:"指标ID"`
  234. // IndexCode string `description:"指标编码"`
  235. // IndexName string `description:"指标名称"`
  236. //}
  237. // RadishResearchSearchEdbResp 响应体
  238. //type RadishResearchSearchEdbResp struct {
  239. // StockCode string `description:"证券代码" `
  240. // EdbCode string `description:"指标代码"`
  241. // IndexName string `description:"指标名称"`
  242. // Frequency int `description:"频度: 1-60"`
  243. // IndexData []RadishResearchSearchEdbData `description:"指标数据"`
  244. //}
  245. //type RadishResearchSearchEdbData struct {
  246. // DataTime string
  247. // Value string
  248. //}
  249. // RadishResearchIndexWithData 萝卜投研指标
  250. //type RadishResearchIndexWithData struct {
  251. // StockCode string `description:"证券代码"`
  252. // EdbCode string `description:"指标代码"`
  253. // IndexData []*RadishResearchIndexData `description:"指标数据"`
  254. //}
  255. // RadishResearchIndexData 萝卜投研指标数据
  256. //type RadishResearchIndexData struct {
  257. // DataTime time.Time `description:"数据时间"`
  258. // Value float64 `description:"数据值"`
  259. //}
  260. // RadishResearchIndexDataLibResp 萝卜投研指标-指标库响应
  261. //type RadishResearchIndexDataLibResp struct {
  262. // Ret int
  263. // Msg string
  264. // ErrMsg string
  265. // ErrCode string
  266. // Data []*RadishResearchIndexWithData
  267. // Success bool `description:"true 执行成功,false 执行失败"`
  268. //}
  269. // RadishResearchAddEdbReq 新增指标请求体
  270. //type RadishResearchAddEdbReq struct {
  271. // StartTime string `description:"每日数据开始时间"`
  272. // EndTime string `description:"每日数据结束时间"`
  273. // Interval int `description:"时间周期"`
  274. // Fill string `description:"非交易间隔处理"`
  275. // CPS string `description:"复权方式"`
  276. // BaseDate string `description:"复权基点"`
  277. // IndexList []*RadishResearchBaseAddIndexItem `description:"指标信息"`
  278. //}
  279. //type RadishResearchBaseAddIndexItem struct {
  280. // ClassifyId int `description:"分类ID"`
  281. // Unit string `description:"单位"`
  282. // IndexName string `description:"指标名称"`
  283. // Frequency string `description:"频度"`
  284. // StockCode string `description:"证券代码"`
  285. // EdbCode string `description:"指标代码"`
  286. //}
  287. //type RadishResearchBaseAddReq struct {
  288. // StartTime string `description:"每日数据开始时间"`
  289. // EndTime string `description:"每日数据结束时间"`
  290. // Interval int `description:"时间周期"`
  291. // Fill string `description:"非交易间隔处理"`
  292. // CPS string `description:"复权方式"`
  293. // BaseDate string `description:"复权基点"`
  294. // SysAdminId int `description:"创建人ID"`
  295. // SysAdminName string `description:"创建人姓名"`
  296. // RadishResearchBaseAddIndexItem `description:"指标信息"`
  297. //}
  298. // RadishResearchIndexEditReq 编辑指标请求
  299. type RadishResearchIndexEditReq struct {
  300. IndexId int `description:"指标ID"`
  301. ClassifyId int `description:"分类ID"`
  302. }
  303. // RadishResearchIndexRemoveReq 删除指标请求
  304. type RadishResearchIndexRemoveReq struct {
  305. IndexId int `description:"指标ID"`
  306. }
  307. // RadishResearchIndexListChoiceReq 指标列表选择请求
  308. type RadishResearchIndexListChoiceReq struct {
  309. ClassifyId string `form:"ClassifyId" description:"分类ID(多选)"`
  310. IncludeChild bool `form:"IncludeChild" description:"是否包含子分类"`
  311. Frequency string `form:"Frequency" description:"频度(多选)"`
  312. SysAdminId string `form:"SysAdminId" description:"创建人ID(多选)"`
  313. Keywords string `form:"Keywords" description:"关键词: 指标ID/指标名称"`
  314. ListIds string `form:"ListIds" description:"列表选择项/排除项(全选为true时为排除项)"`
  315. SelectAll bool `form:"SelectAll" description:"是否全选: true/false"`
  316. }
  317. // RadishResearchIndexListChoiceItem 指标列表选择响应
  318. type RadishResearchIndexListChoiceItem struct {
  319. IndexId int `description:"指标ID"`
  320. IndexCode string `description:"指标编码"`
  321. IndexName string `description:"指标名称"`
  322. }
  323. // RadishResearchIndexMultiOptReq 指标批量操作请求
  324. type RadishResearchIndexMultiOptReq struct {
  325. IndexIds []int `description:"指标IDs"`
  326. OptType int `description:"操作类型: 1-移动分类; 2-删除; 3-刷新"`
  327. MoveClassifyId int `description:"移动至分类ID"`
  328. RefreshType int `description:"刷新类型: 1-最近6小时; 2-全部刷新"`
  329. }
  330. // RadishResearchIndexListForm 指标列表表单
  331. type RadishResearchIndexListForm struct {
  332. PageSize int `form:"PageSize" description:"每页数据量"`
  333. CurrentIndex int `form:"CurrentIndex" description:"页码"`
  334. ClassifyId int `form:"ClassifyId" description:"分类ID(查询结果包含所有子分类指标)"`
  335. ClassifyIds string `form:"ClassifyIds" description:"分类IDs"`
  336. IgnoreEdbExist bool `form:"IgnoreEdbExist" description:"忽略已加入指标库的"`
  337. Frequencies string `form:"Frequencies" description:"频度(多选)"`
  338. Keyword string `form:"Keyword" description:"关键词-指标ID/指标名称"`
  339. }
  340. type RadishResearchIndexPageListResp struct {
  341. List []*BaseFromRadishResearchIndexItem
  342. Paging *paging.PagingItem `description:"分页数据"`
  343. }
  344. func GetRadishResearchIndexById(indexId int) (item *BaseFromRadishResearchIndex, err error) {
  345. o := global.DbMap[utils.DbNameIndex]
  346. sql := ` SELECT * FROM base_from_radish_research_index WHERE base_from_radish_research_index_id = ?`
  347. err = o.Raw(sql, indexId).First(&item).Error
  348. return
  349. }
  350. // UpdateRadishResearchIndexSortByClassifyId 根据分类id更新排序
  351. func UpdateRadishResearchIndexSortByClassifyId(classifyId, nowSort int, prevEdbInfoId int, updateSort string) (err error) {
  352. o := global.DbMap[utils.DbNameIndex]
  353. sql := ` update base_from_radish_research_index set sort = ` + updateSort + ` WHERE classify_id=?`
  354. if prevEdbInfoId > 0 {
  355. sql += ` AND ( sort > ? or ( base_from_radish_research_index_id > ` + fmt.Sprint(prevEdbInfoId) + ` and sort=` + fmt.Sprint(nowSort) + ` )) `
  356. } else {
  357. sql += ` AND ( sort > ? )`
  358. }
  359. err = o.Exec(sql, classifyId, nowSort).Error
  360. return
  361. }
  362. // GetRadishResearchIndexMaxSortByClassifyId 获取分类下指标的最大的排序数
  363. func GetRadishResearchIndexMaxSortByClassifyId(classifyId int) (sort int, err error) {
  364. o := global.DbMap[utils.DbNameIndex]
  365. sql := `SELECT COALESCE(MAX(sort), 0) AS sort FROM base_from_radish_research_index WHERE classify_id = ?`
  366. err = o.Raw(sql, classifyId).Scan(&sort).Error
  367. return
  368. }
  369. // GetFirstRadishResearchIndexByClassifyId 获取当前分类下,且排序数相同 的排序第一条的数据
  370. func GetFirstRadishResearchIndexByClassifyId(classifyId int) (item *BaseFromRadishResearchIndex, err error) {
  371. o := global.DbMap[utils.DbNameIndex]
  372. sql := ` SELECT * FROM base_from_radish_research_index WHERE classify_id = ? ORDER BY sort ASC,base_from_radish_research_index_id ASC LIMIT 1`
  373. err = o.Raw(sql, classifyId).First(&item).Error
  374. return
  375. }
  376. type RadishResearchIndexConvert2EdbRule struct {
  377. ConvertType int `description:"转换类型: 1-指定时间值; 2-区间计算值"`
  378. ConvertFixed struct {
  379. FixedDay int `description:"指定时间值日期: 1-当日; 2-前一日"`
  380. FixedTime string `description:"指定时间值时点(HH:mm:ss)"`
  381. } `description:"指定时间值"`
  382. ConvertArea struct {
  383. StartDay int `description:"起始时间日期: 1-当日; 2-前一日"`
  384. StartTime string `description:"起始时间时点(HH:mm:ss)"`
  385. EndDay int `description:"截止时间日期: 1-当日; 2-前一日"`
  386. EndTime string `description:"截止时间时点(HH:mm:ss)"`
  387. CalculateType int `description:"计算类型: 1-区间均值; 2-最大值; 3-最小值"`
  388. } `description:"区间计算值"`
  389. }
  390. // RadishResearchIndexMultiSave2EdbPreReq 批量添加指标库请求
  391. type RadishResearchIndexMultiSave2EdbPreReq struct {
  392. ConvertRule RadishResearchIndexConvert2EdbRule
  393. IndexIds []int `description:"指标IDs"`
  394. }
  395. type RadishResearchIndexMultiSave2EdbReq struct {
  396. ConvertRule RadishResearchIndexConvert2EdbRule
  397. NewIndexes []*RadishResearchIndexMultiSave2EdbPreItem `description:"新增指标"`
  398. }
  399. type RadishResearchIndexMultiSave2EdbLibReq struct {
  400. ConvertRule RadishResearchIndexConvert2EdbRule
  401. NewIndex *RadishResearchIndexMultiSave2EdbPreItem `description:"新增指标"`
  402. }
  403. // RadishResearchIndexMultiSave2EdbPreItem 批量新增指标库信息
  404. type RadishResearchIndexMultiSave2EdbPreItem struct {
  405. IndexId int `description:"指标ID"`
  406. IndexCode string `description:"指标编码"`
  407. IndexName string `description:"原指标名称"`
  408. NewIndexName string `description:"新指标名称"`
  409. StockCode string `description:"证券代码"`
  410. EdbCode string `description:"指标代码"`
  411. Unit string `description:"单位"`
  412. Frequency string `description:"原频度"`
  413. NewFrequency string `description:"新频度(固定日度)"`
  414. ClassifyId int `description:"指标库分类ID"`
  415. SysAdminId int `description:"创建人ID"`
  416. SysAdminName string `description:"创建人姓名"`
  417. Tips string `description:"提示信息"`
  418. ErrMsg string `description:"错误信息"`
  419. }
  420. type RadishResearchIndexMultiSave2EdbResp struct {
  421. Exist []*RadishResearchIndexMultiSave2EdbPreItem `description:"已存在的指标"`
  422. Success []*RadishResearchIndexMultiSave2EdbPreItem `description:"添加成功的指标"`
  423. Fail []*RadishResearchIndexMultiSave2EdbPreItem `description:"添加失败的指标"`
  424. }
  425. type RadishResearchIndexMultiOptResp struct {
  426. Success []*RadishResearchIndexBaseInfo `description:"操作成功的指标"`
  427. Fail []*RadishResearchIndexBaseInfo `description:"操作失败的指标"`
  428. }
  429. type RadishResearchIndexBaseInfo struct {
  430. IndexId int `description:"指标ID"`
  431. IndexCode string `description:"指标编码"`
  432. IndexName string `description:"指标名称"`
  433. }
  434. func (m *BaseFromRadishResearchIndex) RemoveIndexAndData(indexCode string) (err error) {
  435. tx := global.DbMap[utils.DbNameIndex].Begin()
  436. defer func() {
  437. if err != nil {
  438. _ = tx.Rollback()
  439. return
  440. }
  441. _ = tx.Commit()
  442. }()
  443. sql := fmt.Sprintf(`DELETE FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.Cols().IndexCode)
  444. e := tx.Exec(sql, indexCode).Error
  445. if e != nil {
  446. err = fmt.Errorf("delete index err: %s", e.Error())
  447. return
  448. }
  449. dataOb := new(BaseFromRadishResearchData)
  450. sql = fmt.Sprintf(`DELETE FROM %s WHERE %s = ?`, dataOb.TableName(), dataOb.Cols().IndexCode)
  451. e = tx.Exec(sql, indexCode).Error
  452. if e != nil {
  453. err = fmt.Errorf("delete index data err: %s", e.Error())
  454. return
  455. }
  456. return
  457. }
  458. // RadishResearchIndexSelectReq 批量加入指标-选择指标
  459. type RadishResearchIndexSelectReq struct {
  460. ClassifyIds []int `description:"分类IDs"`
  461. Frequencies []string `description:"频度"`
  462. Keyword string `description:"关键词-指标ID/指标名称"`
  463. IndexCodes []string `description:"SelectAll-true: IndexCodes为排除的指标, SelectAll-false: IndexCodes为选择的指标"`
  464. SelectAll bool `description:"列表全选"`
  465. }
  466. // UpdateEdbExists 更新是否加入指标库字段
  467. func (m *BaseFromRadishResearchIndex) UpdateEdbExists(exist int, indexCodes []string) (err error) {
  468. if len(indexCodes) == 0 {
  469. return
  470. }
  471. o := global.DbMap[utils.DbNameIndex]
  472. sql := fmt.Sprintf(`UPDATE %s SET %s = ? WHERE %s IN ?`, m.TableName(), m.Cols().EdbExist, m.Cols().IndexCode)
  473. err = o.Exec(sql, exist, indexCodes).Error
  474. return
  475. }