This commit is contained in:
2025-02-07 22:58:01 +08:00
commit ba4aad0ae5
23 changed files with 1061 additions and 0 deletions

13
dto/common_response.go Normal file
View File

@ -0,0 +1,13 @@
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"`
}