package request type OldDataShowRequest struct { OldDataShow2 PageInfo OrderKey string `json:"orderKey"` // 排序 Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true } type OldDataShow2 struct { TaskId int `json:"task_id"` //任务id TaskName string `json:"task_name"` //任务名 NewDate []string `json:"new_date"` // 日期 } type ExcelOldDataInfo struct { FileName string `json:"fileName"` // 文件名 InfoList struct { OldDataShow2 PageInfo OrderKey string `json:"orderKey"` // 排序 Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true } `json:"infoList"` }