package data_manage import ( "eta/eta_api/utils" "time" "gorm.io/gorm" "database/sql" "eta/eta_api/global" "github.com/rdlucklib/rdluck_tools/paging" ) type BaseFromPurangIndex struct { BaseFromPurangIndexId int `orm:"column(base_from_purang_index_id);pk"` ClassifyId int IndexCode string IndexName string Frequency string Unit string Sort int StartDate time.Time `description:"开始日期"` EndDate time.Time `description:"结束日期"` EndValue float64 CreateTime time.Time ModifyTime time.Time } type BaseFromPurangIndexList struct { BaseFromPurangIndexId int `orm:"column(base_from_purang_index_id);pk"` ClassifyId int Interface string EdbInfoId int EdbUniqueCode string `description:"指标库唯一编码"` EdbClassifyId int `description:"指标库分类ID"` StartDate string EndDate string EndValue float64 IndexCode string IndexName string Frequency string Unit string Sort int CreateTime string ModifyTime string EdbExist int `description:"指标库是否已添加:0-否;1-是"` DataList []*BaseFromPurangData `gorm:"-"` Paging *paging.PagingItem `description:"分页数据" gorm:"-"` } func (baseFromPurangIndexList *BaseFromPurangIndexList) AfterFind(tx *gorm.DB) (err error) { baseFromPurangIndexList.CreateTime = utils.GormDateStrToDateTimeStr(baseFromPurangIndexList.CreateTime) baseFromPurangIndexList.ModifyTime = utils.GormDateStrToDateTimeStr(baseFromPurangIndexList.ModifyTime) baseFromPurangIndexList.StartDate = utils.GormDateStrToDateStr(baseFromPurangIndexList.StartDate) baseFromPurangIndexList.EndDate = utils.GormDateStrToDateStr(baseFromPurangIndexList.EndDate) return } type BaseFromPurangIndexSearchList struct { List []*BaseFromPurangIndexList Paging *paging.PagingItem `description:"分页数据"` } type PurangSingleDataResp struct { BaseFromPurangIndexId 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 []*PurangSingleData `gorm:"-"` Paging *paging.PagingItem `description:"分页数据" gorm:"-"` } type PurangSingleData struct { Value string `orm:"column(value)" description:"日期"` DataTime string `orm:"column(data_time)" description:"值"` } func GetPurangIndexByClassifyId(classifyId int) (items []*BaseFromPurangIndex, err error) { 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 ` err = global.DbMap[utils.DbNameIndex].Raw(sql, classifyId).Find(&items).Error return } func GetPurangIndex(condition string, pars []interface{}) (items []*BaseFromPurangIndexList, err error) { sql := ` SELECT * FROM base_from_purang_index WHERE 1=1 ` if condition != "" { sql += condition } sql += ` ORDER BY sort ASC, base_from_purang_index_id asc` err = global.DbMap[utils.DbNameIndex].Raw(sql, pars...).Find(&items).Error return } func GetPurangIndexPage(condition string, pars []interface{}, startSize, pageSize int) (items []*BaseFromPurangIndexList, err error) { sql := ` SELECT * FROM base_from_purang_index WHERE 1=1 ` if condition != "" { sql += condition } sql += ` ORDER BY sort ASC, base_from_purang_index_id asc LIMIT ?,?` pars = append(pars, startSize, pageSize) err = global.DbMap[utils.DbNameIndex].Raw(sql, pars...).Find(&items).Error return } func GetPurangIndexPageCount(condition string, pars []interface{}) (count int, err error) { sql := ` SELECT COUNT(1) AS count FROM base_from_purang_index WHERE 1=1 ` if condition != "" { sql += condition } err = global.DbMap[utils.DbNameIndex].Raw(sql, pars...).Scan(&count).Error return } func GetPurangIndexDataCount(indexCode string) (count int, err error) { sql := ` SELECT COUNT(1) AS count FROM base_from_purang_data WHERE index_code=? ` err = global.DbMap[utils.DbNameIndex].Raw(sql, indexCode).Scan(&count).Error return } func GetPurangIndexDataByDataTime(indexCodes []string, startDate, endDate string) (items []*BaseFromPurangData, err error) { sql := ` SELECT * FROM base_from_purang_data WHERE index_code in (` + utils.GetOrmInReplace(len(indexCodes)) + `) and data_time >=? and data_time