base_from_purang.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. package data_manage
  2. import (
  3. "eta/eta_api/utils"
  4. "time"
  5. "gorm.io/gorm"
  6. "database/sql"
  7. "eta/eta_api/global"
  8. "github.com/rdlucklib/rdluck_tools/paging"
  9. )
  10. type BaseFromPurangIndex struct {
  11. BaseFromPurangIndexId int `orm:"column(base_from_purang_index_id);pk"`
  12. ClassifyId int
  13. IndexCode string
  14. IndexName string
  15. Frequency string
  16. Unit string
  17. Sort int
  18. StartDate time.Time `description:"开始日期"`
  19. EndDate time.Time `description:"结束日期"`
  20. EndValue float64
  21. CreateTime time.Time
  22. ModifyTime time.Time
  23. }
  24. type BaseFromPurangIndexList struct {
  25. BaseFromPurangIndexId int `orm:"column(base_from_purang_index_id);pk"`
  26. ClassifyId int
  27. Interface string
  28. EdbInfoId int
  29. EdbUniqueCode string `description:"指标库唯一编码"`
  30. EdbClassifyId int `description:"指标库分类ID"`
  31. StartDate string
  32. EndDate string
  33. EndValue float64
  34. IndexCode string
  35. IndexName string
  36. Frequency string
  37. Unit string
  38. Sort int
  39. CreateTime string
  40. ModifyTime string
  41. EdbExist int `description:"指标库是否已添加:0-否;1-是"`
  42. DataList []*BaseFromPurangData `gorm:"-"`
  43. Paging *paging.PagingItem `description:"分页数据" gorm:"-"`
  44. }
  45. func (baseFromPurangIndexList *BaseFromPurangIndexList) AfterFind(tx *gorm.DB) (err error) {
  46. baseFromPurangIndexList.CreateTime = utils.GormDateStrToDateTimeStr(baseFromPurangIndexList.CreateTime)
  47. baseFromPurangIndexList.ModifyTime = utils.GormDateStrToDateTimeStr(baseFromPurangIndexList.ModifyTime)
  48. baseFromPurangIndexList.StartDate = utils.GormDateStrToDateStr(baseFromPurangIndexList.StartDate)
  49. baseFromPurangIndexList.EndDate = utils.GormDateStrToDateStr(baseFromPurangIndexList.EndDate)
  50. return
  51. }
  52. type BaseFromPurangIndexSearchList struct {
  53. List []*BaseFromPurangIndexList
  54. Paging *paging.PagingItem `description:"分页数据"`
  55. }
  56. type PurangSingleDataResp struct {
  57. BaseFromPurangIndexId int
  58. ClassifyId int
  59. EdbInfoId int
  60. IndexCode string
  61. IndexName string
  62. Frequency string
  63. Unit string
  64. StartTime string
  65. CreateTime string
  66. ModifyTime string
  67. EdbExist int `description:"指标库是否已添加:0-否;1-是"`
  68. Data []*PurangSingleData `gorm:"-"`
  69. Paging *paging.PagingItem `description:"分页数据" gorm:"-"`
  70. }
  71. type PurangSingleData struct {
  72. Value string `orm:"column(value)" description:"日期"`
  73. DataTime string `orm:"column(data_time)" description:"值"`
  74. }
  75. func GetPurangIndexByClassifyId(classifyId int) (items []*BaseFromPurangIndex, err error) {
  76. sql := ` SELECT base_from_purang_index_id, classify_id, index_code, index_name FROM base_from_purang_index WHERE classify_id=? ORDER BY sort ASC, base_from_purang_index_id ASC `
  77. err = global.DbMap[utils.DbNameIndex].Raw(sql, classifyId).Find(&items).Error
  78. return
  79. }
  80. func GetPurangIndex(condition string, pars []interface{}) (items []*BaseFromPurangIndexList, err error) {
  81. sql := ` SELECT * FROM base_from_purang_index WHERE 1=1 `
  82. if condition != "" {
  83. sql += condition
  84. }
  85. sql += ` ORDER BY sort ASC, base_from_purang_index_id asc`
  86. err = global.DbMap[utils.DbNameIndex].Raw(sql, pars...).Find(&items).Error
  87. return
  88. }
  89. func GetPurangIndexPage(condition string, pars []interface{}, startSize, pageSize int) (items []*BaseFromPurangIndexList, err error) {
  90. sql := ` SELECT * FROM base_from_purang_index WHERE 1=1 `
  91. if condition != "" {
  92. sql += condition
  93. }
  94. sql += ` ORDER BY sort ASC, base_from_purang_index_id asc LIMIT ?,?`
  95. pars = append(pars, startSize, pageSize)
  96. err = global.DbMap[utils.DbNameIndex].Raw(sql, pars...).Find(&items).Error
  97. return
  98. }
  99. func GetPurangIndexPageCount(condition string, pars []interface{}) (count int, err error) {
  100. sql := ` SELECT COUNT(1) AS count FROM base_from_purang_index WHERE 1=1 `
  101. if condition != "" {
  102. sql += condition
  103. }
  104. err = global.DbMap[utils.DbNameIndex].Raw(sql, pars...).Scan(&count).Error
  105. return
  106. }
  107. func GetPurangIndexDataCount(indexCode string) (count int, err error) {
  108. sql := ` SELECT COUNT(1) AS count FROM base_from_purang_data WHERE index_code=? `
  109. err = global.DbMap[utils.DbNameIndex].Raw(sql, indexCode).Scan(&count).Error
  110. return
  111. }
  112. func GetPurangIndexDataByDataTime(indexCodes []string, startDate, endDate string) (items []*BaseFromPurangData, err error) {
  113. sql := ` SELECT * FROM base_from_purang_data WHERE index_code in (` + utils.GetOrmInReplace(len(indexCodes)) + `) and data_time >=? and data_time <? ORDER BY data_time DESC `
  114. err = global.DbMap[utils.DbNameIndex].Raw(sql, indexCodes, startDate, endDate).Find(&items).Error
  115. return
  116. }
  117. func GetPurangIndexDataTimePageByCodes(indexCodes []string, startSize, pageSize int) (dataTimes []string, err error) {
  118. sql := ` SELECT data_time FROM base_from_purang_data WHERE index_code in ? GROUP BY data_time ORDER BY data_time DESC LIMIT ?,? `
  119. err = global.DbMap[utils.DbNameIndex].Raw(sql, indexCodes, startSize, pageSize).Find(&dataTimes).Error
  120. return
  121. }
  122. func GetPurangIndexDataTimePageCount(indexCodes []string) (count int, err error) {
  123. sql := ` SELECT COUNT(DISTINCT data_time) AS count FROM base_from_purang_data WHERE index_code in (` + utils.GetOrmInReplace(len(indexCodes)) + `) `
  124. err = global.DbMap[utils.DbNameIndex].Raw(sql, indexCodes).Scan(&count).Error
  125. return
  126. }
  127. func GetPurangIndexDataByCodes(indexCode []string) (items []*BaseFromPurangData, err error) {
  128. if len(indexCode) == 0 {
  129. return
  130. }
  131. sql := ` SELECT * FROM base_from_purang_data WHERE index_code in (` + utils.GetOrmInReplace(len(indexCode)) + `) ORDER BY data_time DESC `
  132. err = global.DbMap[utils.DbNameIndex].Raw(sql, indexCode).Find(&items).Error
  133. return
  134. }
  135. // GetPurangByConditionAndFrequency 根据条件获取普瑞指标列表
  136. func GetPurangByConditionAndFrequency(condition, frequency string, pars []interface{}) (items []*BaseFromPurangIndex, err error) {
  137. sql := ` SELECT * FROM base_from_purang_index WHERE 1=1 `
  138. if condition != "" {
  139. sql += condition
  140. }
  141. sql += ` AND frequency=?`
  142. sql += ` ORDER BY sort ASC, base_from_purang_index_id ASC`
  143. err = global.DbMap[utils.DbNameIndex].Raw(sql, pars, frequency).Find(&items).Error
  144. return
  145. }
  146. func GetPurangFrequencyByCondition(condition string, pars []interface{}) (items []string, err error) {
  147. sql := `SELECT DISTINCT frequency FROM base_from_purang_index WHERE 1=1 `
  148. if condition != "" {
  149. sql += condition
  150. }
  151. sql += ` ORDER BY FIELD(frequency,'日度','周度','旬度','月度','季度','半年度','年度') `
  152. err = global.DbMap[utils.DbNameIndex].Raw(sql, pars...).Find(&items).Error
  153. return
  154. }
  155. // GetPurangDataDataTimeByIndexId 根据指标id获取指标数据的日期列表
  156. func GetPurangDataDataTimeByIndexId(indexIdList []int) (items []string, err error) {
  157. if len(indexIdList) == 0 {
  158. return
  159. }
  160. sql := ` SELECT DISTINCT data_time FROM base_from_purang_data WHERE base_from_purang_index_id IN (` + utils.GetOrmInReplace(len(indexIdList)) + `) ORDER BY data_time DESC`
  161. err = global.DbMap[utils.DbNameIndex].Raw(sql, indexIdList).Find(&items).Error
  162. for i, item := range items {
  163. items[i] = utils.GormDateStrToDateStr(item)
  164. }
  165. return
  166. }
  167. type BaseFromPurangData struct {
  168. BaseFromPurangDataId int `orm:"column(base_from_purang_data_id);pk"`
  169. BaseFromPurangIndexId int
  170. IndexCode string
  171. DataTime string
  172. Value string
  173. CreateTime string
  174. ModifyTime string
  175. DataTimestamp int64
  176. }
  177. func (baseFromPurangData *BaseFromPurangData) AfterFind(tx *gorm.DB) (err error) {
  178. baseFromPurangData.ModifyTime = utils.GormDateStrToDateTimeStr(baseFromPurangData.ModifyTime)
  179. baseFromPurangData.CreateTime = utils.GormDateStrToDateTimeStr(baseFromPurangData.CreateTime)
  180. baseFromPurangData.DataTime = utils.GormDateStrToDateStr(baseFromPurangData.DataTime)
  181. return
  182. }
  183. type BaseFromPurangIndexSearchItem struct {
  184. BaseFromPurangIndexId int `orm:"column(base_from_purang_index_id);pk"`
  185. ClassifyId int
  186. ParentClassifyId int
  187. IndexCode string
  188. IndexName string
  189. }
  190. // BatchCheckPurangEdbReq 指标数据结构体
  191. type BatchCheckPurangEdbReq struct {
  192. Frequencies string `description:"频度;枚举值:日度、周度、月度、季度、半年度、年度"`
  193. Keyword string `description:"关键字"`
  194. ClassifyIds string `description:"所选品种id列表"`
  195. ListAll bool `form:"ListAll" json:"ListAll" description:"列表全选"`
  196. TradeCodeList string `form:"TradeCodeList" json:"TradeCodeList" description:"全选为false时, 该数组为选中; 全选为true时, 该数组为不选的指标"`
  197. }
  198. // GetPurangItemList 模糊查询Purang数据库指标列表
  199. func GetPurangItemList(condition string) (items []*BaseFromPurangIndexSearchItem, err error) {
  200. sql := "SELECT * FROM base_from_purang_index WHERE 1=1"
  201. if condition != "" {
  202. sql += condition
  203. }
  204. err = global.DbMap[utils.DbNameIndex].Raw(sql).Find(&items).Error
  205. return
  206. }
  207. func GetPurangIndexDataByCode(indexCode string, pageIndex, pageSize int) (list []*BaseFromPurangData, err error) {
  208. sql := `SELECT * FROM base_from_purang_data WHERE index_code=? order by data_time desc limit ?,?`
  209. err = global.DbMap[utils.DbNameIndex].Raw(sql, indexCode, pageIndex, pageSize).Find(&list).Error
  210. return
  211. }
  212. func GetPurangIndexDataTotalByCode(indexCode string) (total int64, err error) {
  213. sqlStr := `SELECT count(*) FROM base_from_purang_data WHERE index_code=?`
  214. var totalNull sql.NullInt64
  215. err = global.DbMap[utils.DbNameIndex].Raw(sqlStr, indexCode).Scan(&totalNull).Error
  216. if !totalNull.Valid {
  217. total = 0
  218. } else {
  219. total = totalNull.Int64
  220. }
  221. return
  222. }
  223. func GetBaseFromPurangIndexByIndexCode(indexCode string) (list *BaseFromPurangIndex, err error) {
  224. sql := ` SELECT * FROM base_from_purang_index WHERE index_code=? `
  225. err = global.DbMap[utils.DbNameIndex].Raw(sql, indexCode).First(&list).Error
  226. return
  227. }
  228. type BaseFromPurangIndexType struct {
  229. Type2 string `gorm:"column:type_2"`
  230. Type3 string `gorm:"column:type_3"`
  231. }
  232. // Update 更新Purang指标基础信息
  233. func (item *BaseFromPurangIndex) Update(cols []string) (err error) {
  234. err = global.DbMap[utils.DbNameIndex].Select(cols).Updates(item).Error
  235. return
  236. }
  237. // EditPurangIndexInfoResp 新增指标的返回
  238. type EditPurangIndexInfoResp struct {
  239. BaseFromPurangIndexId int `description:"指标ID"`
  240. IndexCode string `description:"指标code"`
  241. }
  242. type PurangIndexSource2EdbReq struct {
  243. EdbCode string
  244. EdbName string
  245. Frequency string
  246. Unit string
  247. ClassifyId int
  248. AdminId int
  249. AdminRealName string
  250. }
  251. func GetPurangFrequencyByClassifyId(classifyId int) (items []*GlFrequency, err error) {
  252. sql := ` SELECT frequency FROM base_from_purang_index WHERE classify_id = ? `
  253. sql += ` GROUP BY frequency ORDER BY frequency ASC `
  254. err = global.DbMap[utils.DbNameIndex].Raw(sql, classifyId).Find(&items).Error
  255. return
  256. }