edb_info.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. package data_manage
  2. import (
  3. "fmt"
  4. "rdluck_tools/orm"
  5. "time"
  6. )
  7. type EdbInfo struct {
  8. EdbInfoId int `orm:"column(edb_info_id);pk"`
  9. SourceName string `description:"来源名称"`
  10. Source int `description:"来源id"`
  11. EdbCode string `description:"指标编码"`
  12. EdbName string `description:"指标名称"`
  13. EdbNameSource string `description:"指标名称来源"`
  14. Frequency string `description:"频率"`
  15. Unit string `description:"单位"`
  16. StartDate string `description:"起始日期"`
  17. EndDate string `description:"终止日期"`
  18. ClassifyId int `description:"分类id"`
  19. SysUserId int
  20. SysUserRealName string
  21. UniqueCode string `description:"指标唯一编码"`
  22. CreateTime time.Time
  23. ModifyTime time.Time
  24. MinValue float64 `description:"指标最小值"`
  25. MaxValue float64 `description:"指标最大值"`
  26. CalculateFormula string `description:"计算公式"`
  27. }
  28. type EdbInfoList struct {
  29. EdbInfoId int `orm:"column(edb_info_id);pk"`
  30. SourceName string `description:"来源名称"`
  31. Source int `description:"来源id"`
  32. EdbCode string `description:"指标编码"`
  33. EdbName string `description:"指标名称"`
  34. Frequency string `description:"频率"`
  35. Unit string `description:"单位"`
  36. StartDate time.Time `description:"起始日期"`
  37. EndDate time.Time `description:"终止日期"`
  38. ClassifyId int `description:"分类id"`
  39. UniqueCode string `description:"指标唯一编码"`
  40. CalculateFormula string `description:"计算公式"`
  41. ModifyTime string `description:"更新时间"`
  42. }
  43. type EdbInfoSearchData struct {
  44. EdbDataId int `description:"指标数据Id"`
  45. DataTime string `description:"数据日期"`
  46. Value float64 `description:"数据"`
  47. }
  48. type EdbInfoSearchDataV1 struct {
  49. DataTime string `description:"数据日期"`
  50. Value string `description:"数据"`
  51. }
  52. func GetEdbInfoByCondition(condition string, pars []interface{}, order int) (item []*EdbInfoList, err error) {
  53. o := orm.NewOrm()
  54. o.Using("data")
  55. sql := ` SELECT * FROM edb_info WHERE 1=1 `
  56. if condition != "" {
  57. sql += condition
  58. }
  59. if order == 1 {
  60. sql += ` ORDER BY end_date ASC `
  61. } else {
  62. sql += ` ORDER BY edb_info_id ASC `
  63. }
  64. _, err = o.Raw(sql, pars).QueryRows(&item)
  65. return
  66. }
  67. func ModifyEdbDataInfoDate(edbInfoId int, maxDate string) (err error) {
  68. o := orm.NewOrm()
  69. o.Using("data")
  70. sql := ` UPDATE edb_info SET end_date=?,modify_time=NOW() WHERE edb_info_id=? `
  71. _, err = o.Raw(sql, maxDate, edbInfoId).Exec()
  72. return
  73. }
  74. type EdbInfoMaxAndMinInfo struct {
  75. MinDate string `description:"最小日期"`
  76. MaxDate string `description:"最大日期"`
  77. MinValue float64 `description:"最小值"`
  78. MaxValue float64 `description:"最大值"`
  79. LatestValue float64 `description:"最新值"`
  80. }
  81. func GetEdbInfoMaxAndMinInfo(source int, edbCode string) (item *EdbInfoMaxAndMinInfo, err error) {
  82. o := orm.NewOrm()
  83. o.Using("data")
  84. sql := ``
  85. tableName := GetEdbDataTableName(source)
  86. 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=? `
  87. sql = fmt.Sprintf(sql, tableName)
  88. err = o.Raw(sql, edbCode).QueryRow(&item)
  89. var latest_value float64
  90. sql = ` SELECT value AS latest_value FROM %s WHERE edb_code=? ORDER BY data_time DESC LIMIT 1 `
  91. sql = fmt.Sprintf(sql, tableName)
  92. err = o.Raw(sql, edbCode).QueryRow(&latest_value)
  93. item.LatestValue = latest_value
  94. return
  95. }
  96. func ModifyEdbInfoMaxAndMinInfo(edbInfoId int, item *EdbInfoMaxAndMinInfo) (err error) {
  97. o := orm.NewOrm()
  98. o.Using("data")
  99. 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=? `
  100. _, err = o.Raw(sql, item.MinDate, item.MaxDate, item.MinValue, item.MaxValue, item.MaxDate, item.LatestValue, edbInfoId).Exec()
  101. return
  102. }
  103. //order:1升序,其余值为降序
  104. func GetEdbDataListAll(condition string, pars []interface{}, source, order int) (item []*EdbInfoSearchData, err error) {
  105. o := orm.NewOrm()
  106. o.Using("data")
  107. sql := ``
  108. tableName := GetEdbDataTableName(source)
  109. sql = ` SELECT * FROM %s WHERE 1=1 `
  110. sql = fmt.Sprintf(sql, tableName)
  111. if condition != "" {
  112. sql += condition
  113. }
  114. if order == 1 {
  115. sql += ` ORDER BY data_time ASC `
  116. } else {
  117. sql += ` ORDER BY data_time DESC `
  118. }
  119. _, err = o.Raw(sql, pars).QueryRows(&item)
  120. return
  121. }
  122. func GetEdbDataListAllV1(condition string, pars []interface{}, source, order int) (item []*EdbInfoSearchDataV1, err error) {
  123. o := orm.NewOrm()
  124. o.Using("data")
  125. sql := ``
  126. tableName := GetEdbDataTableName(source)
  127. sql = ` SELECT * FROM %s WHERE 1=1 `
  128. sql = fmt.Sprintf(sql, tableName)
  129. if condition != "" {
  130. sql += condition
  131. }
  132. if order == 1 {
  133. sql += ` ORDER BY data_time ASC `
  134. } else {
  135. sql += ` ORDER BY data_time DESC `
  136. }
  137. _, err = o.Raw(sql, pars).QueryRows(&item)
  138. return
  139. }
  140. func GetEdbInfoById(edbInfoId int) (item *EdbInfo, err error) {
  141. o := orm.NewOrm()
  142. o.Using("data")
  143. sql := ` SELECT * FROM edb_info WHERE edb_info_id=? `
  144. err = o.Raw(sql, edbInfoId).QueryRow(&item)
  145. return
  146. }
  147. func GetQuarterEdbInfo() (item []*EdbInfo, err error) {
  148. o := orm.NewOrm()
  149. o.Using("data")
  150. sql := ` SELECT c.* FROM chart_info AS a
  151. INNER JOIN chart_edb_mapping AS b ON a.chart_info_id=b.chart_info_id
  152. INNER JOIN edb_info AS c ON b.edb_info_id=c.edb_info_id
  153. WHERE a.chart_type=2
  154. GROUP BY b.edb_info_id
  155. ORDER BY b.edb_info_id ASC `
  156. _, err = o.Raw(sql).QueryRows(&item)
  157. return
  158. }
  159. func ResetEdbInfoIsUpdate() (err error) {
  160. o := orm.NewOrm()
  161. o.Using("data")
  162. sql := ` UPDATE edb_info SET is_update=1 `
  163. _, err = o.Raw(sql).Exec()
  164. return
  165. }
  166. // GetEdbInfoCalculateListByCondition 获取指标关系列表
  167. func GetEdbInfoCalculateListByCondition(condition string, pars []interface{}) (items []*EdbInfoCalculateMapping, err error) {
  168. o := orm.NewOrm()
  169. o.Using("data")
  170. //calculateTableName := GetEdbInfoCalculateTableName(source)
  171. //if calculateTableName == "" {
  172. // err = errors.New("无效的表名")
  173. // return
  174. //}
  175. sql := ` SELECT * FROM edb_info_calculate_mapping WHERE 1=1 `
  176. //sql = fmt.Sprintf(sql, calculateTableName)
  177. if condition != "" {
  178. sql += condition
  179. }
  180. _, err = o.Raw(sql, pars).QueryRows(&items)
  181. return
  182. }
  183. func DeleteEdbDataByIdAndSource(edbDataId, source int) (err error) {
  184. sql := ` DELETE FROM %s WHERE edb_data_id=? `
  185. tableName := GetEdbDataTableName(source)
  186. sql = fmt.Sprintf(sql, tableName)
  187. o := orm.NewOrm()
  188. o.Using("data")
  189. _, err = o.Raw(sql, edbDataId).Exec()
  190. return
  191. }