Files
ocdp-go/backend/internal/adapter/input/http/dto/error_dto.go
mangomqy c5e51ed069 ocdp v1
2025-11-13 02:54:06 +00:00

16 lines
336 B
Go

package dto
// ErrorResponse 错误响应
type ErrorResponse struct {
Error string `json:"error"`
Message string `json:"message,omitempty"`
Code int `json:"code,omitempty"`
}
// SuccessResponse 成功响应
type SuccessResponse struct {
Message string `json:"message"`
Data interface{} `json:"data,omitempty"`
}