123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- package data_manage
- import (
- "eta_gn/eta_api/global"
- "eta_gn/eta_api/utils"
- "github.com/rdlucklib/rdluck_tools/paging"
- )
- type SciClassify struct {
- TypeName string `orm:"column(type_name)" description:"分类名称"`
- TypeCode string `orm:"column(type_code)" description:"分类名称编码"`
- }
- type SciFrequency struct {
- Frequency string `description:"频度"`
- }
- func GetSciFrequencyByClassifyId(classifyId int) (items []*GlFrequency, err error) {
-
-
-
-
- sql := ` SELECT frequency FROM base_from_sci_index WHERE classify_id = ? `
- sql += ` GROUP BY frequency ORDER BY frequency ASC `
- err = global.DmSQL["data"].Raw(sql, classifyId).Find(&items).Error
- return
- }
- type SciIndex struct {
- BaseFromSciIndexId int `orm:"column(base_from_sci_index_id);pk" gorm:"primaryKey" `
- Interface string
- Name string
- IndexCode string
- IndexName string
- Type1 string `orm:"column(type_1)"`
- Type2 string `orm:"column(type_2)"`
- Type3 string `orm:"column(type_3)"`
- Frequency string
- Unit string
- ApiStartTime string
- ApiUpdateTime string
- StartTime string
- FinishTime string
- CreateTime string
- ModifyTime string
- }
- func GetSciIndex(condition string, pars []interface{}) (items []*SciIndex, err error) {
-
-
-
-
-
-
-
- sql := ` SELECT * FROM base_from_sci_index WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- sql += `ORDER BY sort ASC, base_from_sci_index_id asc`
- err = global.DmSQL["data"].Raw(sql, pars...).Find(&items).Error
- return
- }
- type SciExportIndex struct {
- TypeName string
- IndexCode string
- IndexName string
- Type1 string `orm:"column(type_1)"`
- Type2 string `orm:"column(type_2)"`
- Type3 string `orm:"column(type_3)"`
- Frequency string
- Unit string
- ModifyTime string
- }
- func GetSciFrequency(classifyId int) (items []*string, err error) {
-
-
-
- sql := `SELECT DISTINCT frequency FROM base_from_sci_index WHERE classify_id=? ORDER BY FIELD(frequency,'日度','周度','月度','季度','半年','年度') `
- err = global.DmSQL["data"].Raw(sql, classifyId).Find(&items).Error
- return
- }
- func GetSciFrequencyByCode(code string) (items []*string, err error) {
-
-
-
- sql := `SELECT DISTINCT frequency FROM base_from_sci_index WHERE index_code=? ORDER BY FIELD(frequency,'日度','周度','月度','季度','半年','年度') `
- err = global.DmSQL["data"].Raw(sql, code).Find(&items).Error
- return
- }
- type SciIndexList struct {
- BaseFromSciIndexId int `orm:"column(base_from_sci_index_id);pk" gorm:"primaryKey" `
- Interface string
- Name string
- IndexCode string
- IndexName string
- Type1 string `orm:"column(type_1)"`
- Type2 string `orm:"column(type_2)"`
- Type3 string `orm:"column(type_3)"`
- Frequency string
- Unit string
- ApiStartTime string
- ApiUpdateTime string
- StartTime string
- FinishTime string
- ModifyTime string
- DataList []*SciIndexData
- Paging *paging.PagingItem `description:"分页数据"`
- }
- type SciIndexData struct {
- Value string `orm:"column(value)" description:"日期"`
- DataTime string `orm:"column(data_time)" description:"值"`
- }
- func GetSciIndexData(indexCode string, startSize, pageSize int) (items []*SciIndexData, err error) {
-
-
-
- sql := ` SELECT * FROM base_from_sci_data WHERE index_code=? ORDER BY data_time DESC LIMIT ?,? `
- err = global.DmSQL["data"].Raw(sql, indexCode, startSize, pageSize).Find(&items).Error
- return
- }
- func GetSciIndexDataCount(indexCode string) (count int, err error) {
-
-
-
- sql := ` SELECT COUNT(1) AS count FROM base_from_sci_data WHERE index_code=? `
- err = global.DmSQL["data"].Raw(sql, indexCode).Scan(&count).Error
- return
- }
- func GetSciItemList(keyword string) (items []*SciIndex, err error) {
-
-
-
- sql := "SELECT * FROM base_from_sci_index WHERE CONCAT(index_name,index_code) LIKE ? "
- err = global.DmSQL["data"].Raw(sql, utils.GetLikeKeyword(keyword)).Find(&items).Error
- return
- }
- func GetSciIndexDataByCode(indexCode string) (items []*SciIndexData, err error) {
-
-
-
- sql := ` SELECT * FROM base_from_sci_data WHERE index_code=? ORDER BY data_time DESC `
- err = global.DmSQL["data"].Raw(sql, indexCode).Find(&items).Error
- return
- }
- func GetSciDataMaxCount(classifyId int) (count int, err error) {
-
-
-
-
-
-
-
-
- sql := `SELECT MAX(t.num) AS count FROM (
- SELECT COUNT(1) AS num FROM base_from_sci_index AS a
- INNER JOIN base_from_sci_data AS b ON a.index_code=b.index_code
- WHERE a.classify_id=?
- GROUP BY a.base_from_sci_index_id
- )AS t `
- err = global.DmSQL["data"].Raw(sql, classifyId).Scan(&count).Error
- return
- }
- type ExportSciDataMaxCount struct {
- TypeName string
- Count int
- }
- type ExportSciIndexData struct {
- Value string `orm:"column(value)" description:"日期"`
- DataTime string `orm:"column(data_time)" description:"值"`
- IndexCode string `orm:"column(index_code)" description:"指标编码"`
- }
|