|
@@ -163,10 +163,14 @@ func (req *ReqAssetCount) GetEndTime() (time.Time, error) {
|
|
|
}
|
|
|
|
|
|
type TypeCount struct {
|
|
|
- Time []*model.AssetCount `json:"times"`
|
|
|
- DefName string `json:"defName"`
|
|
|
- DefType int `json:"defType"`
|
|
|
- DefId string `json:"defId"`
|
|
|
+ Time []*model.AssetCountV0 `json:"times"`
|
|
|
+ DefName string `json:"defName"`
|
|
|
+ DefType int `json:"defType"`
|
|
|
+ DefId string `json:"defId"`
|
|
|
+}
|
|
|
+
|
|
|
+func GetStepIndex(t time.Time, endTime time.Time, step int) int64 {
|
|
|
+ return int64(endTime.Sub(t).Seconds()) / int64(step)
|
|
|
}
|
|
|
|
|
|
// 获取统计信息图表需要的信息
|
|
@@ -245,7 +249,14 @@ func GetInfo(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
defId := item.DefId
|
|
|
|
|
|
if defCountsMap[defId] == nil {
|
|
|
- defCountsMap[defId] = &TypeCount{Time: []*model.AssetCount{item}}
|
|
|
+ defCountsMap[defId] = &TypeCount{Time: []*model.AssetCountV0{
|
|
|
+ {
|
|
|
+ DefId: item.DefId,
|
|
|
+ CreateTime: item.CreateTime,
|
|
|
+ Count: item.Count,
|
|
|
+ StepIndex: int(GetStepIndex(item.CreateTime, endTime, form.Step)),
|
|
|
+ },
|
|
|
+ }}
|
|
|
continue
|
|
|
}
|
|
|
|
|
@@ -254,7 +265,12 @@ func GetInfo(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
|
|
|
b, _ := time.ParseDuration(fmt.Sprintf("%ds", form.Step))
|
|
|
if item.CreateTime.Unix() <= lastType.CreateTime.Add(b*-1).Unix() {
|
|
|
- typeList.Time = append(typeList.Time, item)
|
|
|
+ typeList.Time = append(typeList.Time, &model.AssetCountV0{
|
|
|
+ DefId: item.DefId,
|
|
|
+ CreateTime: item.CreateTime,
|
|
|
+ Count: item.Count,
|
|
|
+ StepIndex: int(GetStepIndex(item.CreateTime, endTime, form.Step)),
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
|