localpredatalist.go 838 B

12345678910111213141516171819202122232425262728293031
  1. package http_model
  2. import "time"
  3. type LocalPreDataListRequest struct {
  4. PageSize int `json:"page_size"`
  5. PageNum int `json:"page_num"`
  6. ProjectId string `json:"project_id"` // 项目ID
  7. DataStatus string `json:"data_status"` // 数据状态,13待传数据
  8. EnterpriseId string `json:"enterprise_id"`
  9. }
  10. type GetLocalPreDataListData struct {
  11. TaskdataList []*LocalTaskdatainfo `json:"task_list"`
  12. Total string `json:"total"`
  13. }
  14. type LocalTaskdatainfo struct {
  15. Task *LocaLTaskInfo `json:"task_info"`
  16. DDl time.Time `json:"ddl"` // 截止时间
  17. }
  18. func NewLocalPreDataListRequest() *LocalPreDataListRequest {
  19. return new(LocalPreDataListRequest)
  20. }
  21. func NewLocalPreDataListResponse() *CommonResponse {
  22. resp := new(CommonResponse)
  23. resp.Data = new(GetLocalPreDataListData)
  24. return resp
  25. }