123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- package data_manage
- import (
- "eta/eta_api/utils"
- "time"
- "github.com/beego/beego/v2/client/orm"
- "github.com/rdlucklib/rdluck_tools/paging"
- )
- type BaseFromYongyiIndex struct {
- YongyiIndexId int `orm:"column(yongyi_index_id);pk"`
- ClassifyId int
- IndexCode string
- IndexName string
- Frequency string
- Unit string
- Sort int
- CreateTime time.Time
- ModifyTime time.Time
- }
- type BaseFromYongyiIndexList struct {
- YongyiIndexId int `orm:"column(yongyi_index_id);pk"`
- ClassifyId int
- Interface string
- EdbInfoId int
- EdbUniqueCode string `description:"指标库唯一编码"`
- EdbClassifyId int `description:"指标库分类ID"`
- IndexCode string
- IndexName string
- Frequency string
- Unit string
- Sort int
- CreateTime string
- ModifyTime string
- EdbExist int `description:"指标库是否已添加:0-否;1-是"`
- DataList []*BaseFromYongyiData
- Paging *paging.PagingItem `description:"分页数据"`
- }
- type YongyiSingleDataResp struct {
- YongyiIndexId int
- ClassifyId int
- EdbInfoId int
- IndexCode string
- IndexName string
- Frequency string
- Unit string
- StartTime string
- CreateTime string
- ModifyTime string
- EdbExist int `description:"指标库是否已添加:0-否;1-是"`
- Data []*YongyiSingleData
- }
- type YongyiSingleData struct {
- Value string `orm:"column(value)" description:"日期"`
- DataTime string `orm:"column(data_time)" description:"值"`
- }
- func GetYongyiIndexByClassifyId(classifyId int) (items []*BaseFromYongyiIndex, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT yongyi_index_id, classify_id, index_code, index_name FROM base_from_yongyi_index WHERE classify_id=? ORDER BY sort ASC, yongyi_index_id ASC `
- _, err = o.Raw(sql, classifyId).QueryRows(&items)
- return
- }
- func GetYongyiIndex(condition string, pars interface{}) (items []*BaseFromYongyiIndexList, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM base_from_yongyi_index WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- sql += ` ORDER BY sort ASC, yongyi_index_id asc`
- _, err = o.Raw(sql, pars).QueryRows(&items)
- return
- }
- func GetYongyiIndexDataCount(indexCode string) (count int, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT COUNT(1) AS count FROM base_from_yongyi_data WHERE index_code=? `
- err = o.Raw(sql, indexCode).QueryRow(&count)
- return
- }
- func GetYongyiIndexData(indexCode string, startSize, pageSize int) (items []*BaseFromYongyiData, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM base_from_yongyi_data WHERE index_code=? ORDER BY data_time DESC LIMIT ?,? `
- _, err = o.Raw(sql, indexCode, startSize, pageSize).QueryRows(&items)
- return
- }
- func GetYongyiIndexDataByCodes(indexCode []string) (items []*BaseFromYongyiData, err error) {
- if len(indexCode) == 0 {
- return
- }
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM base_from_yongyi_data WHERE index_code in (` + utils.GetOrmInReplace(len(indexCode)) + `) ORDER BY data_time DESC `
- _, err = o.Raw(sql, indexCode).QueryRows(&items)
- return
- }
- // GetYongyiByConditionAndFrequency 根据条件获取涌益咨询指标列表
- func GetYongyiByConditionAndFrequency(condition, frequency string, pars []interface{}) (items []*BaseFromYongyiIndex, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM base_from_yongyi_index WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- sql += ` AND frequency=?`
- sql += ` ORDER BY sort ASC, yongyi_index_id ASC`
- _, err = o.Raw(sql, pars, frequency).QueryRows(&items)
- return
- }
- func GetYongyiFrequencyByCondition(condition string, pars []interface{}) (items []string, err error) {
- sql := `SELECT DISTINCT frequency FROM base_from_yongyi_index WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- sql += ` ORDER BY FIELD(frequency,'日度','周度','旬度','月度','季度','半年度','年度') `
- o := orm.NewOrmUsingDB("data")
- _, err = o.Raw(sql, pars...).QueryRows(&items)
- return
- }
- // GetYongyiDataDataTimeByIndexId 根据指标id获取指标数据的日期列表
- func GetYongyiDataDataTimeByIndexId(indexIdList []int) (items []string, err error) {
- if len(indexIdList) == 0 {
- return
- }
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT DISTINCT data_time FROM base_from_yongyi_data WHERE yongyi_index_id IN (` + utils.GetOrmInReplace(len(indexIdList)) + `) ORDER BY data_time DESC`
- _, err = o.Raw(sql, indexIdList).QueryRows(&items)
- return
- }
- type BaseFromYongyiData struct {
- YongyiDataId int `orm:"column(yongyi_data_id);pk"`
- YongyiIndexId int
- IndexCode string
- DataTime string
- Value string
- CreateTime string
- ModifyTime string
- DataTimestamp int64
- }
- type BaseFromYongyiIndexSearchItem struct {
- YongyiIndexId int `orm:"column(yongyi_index_id);pk"`
- ClassifyId int
- ParentClassifyId int
- IndexCode string
- IndexName string
- }
- // GetYongyiItemList 模糊查询Yongyi数据库指标列表
- func GetYongyiItemList(condition string) (items []*BaseFromYongyiIndexSearchItem, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := "SELECT * FROM base_from_yongyi_index WHERE 1=1"
- if condition != "" {
- sql += condition
- }
- _, err = o.Raw(sql).QueryRows(&items)
- return
- }
- func GetYongyiIndexDataByCode(indexCode string) (list []*BaseFromYongyiData, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := `SELECT * FROM base_from_yongyi_data WHERE index_code=? `
- _, err = o.Raw(sql, indexCode).QueryRows(&list)
- return
- }
- func GetBaseFromYongyiIndexByIndexCode(indexCode string) (list *BaseFromYongyiIndex, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM base_from_yongyi_index WHERE index_code=? `
- err = o.Raw(sql, indexCode).QueryRow(&list)
- return
- }
- type BaseFromYongyiIndexType struct {
- Type2 string `orm:"column(type_2)"`
- Type3 string `orm:"column(type_3)"`
- }
- // Update 更新Yongyi指标基础信息
- func (item *BaseFromYongyiIndex) Update(cols []string) (err error) {
- o := orm.NewOrmUsingDB("data")
- _, err = o.Update(item, cols...)
- return
- }
- // EditYongyiIndexInfoResp 新增指标的返回
- type EditYongyiIndexInfoResp struct {
- YongyiIndexId int `description:"指标ID"`
- IndexCode string `description:"指标code"`
- }
|