VptPassiveAdapter/dto/common_response.go
2025-02-07 22:58:01 +08:00

14 lines
250 B
Go

package dto
type ApiResponse struct {
Code int `json:"code"`
Msg string `json:"msg"`
Data interface{} `json:"data"`
}
type TaskListResponse struct {
Code int `json:"code"`
Msg string `json:"msg"`
Data []Task `json:"data"`
}