Files
ai-agent/internal/pkg/dto/response/company_response.go
T

15 lines
448 B
Go
Raw Normal View History

2026-04-09 10:01:23 +08:00
package response
import "cs-ai-agent/internal/pkg/enums"
2026-04-09 10:01:23 +08:00
type CompanyResponse struct {
ID int64 `json:"id"`
Name string `json:"name"`
Code string `json:"code"`
CustomerCount int64 `json:"customerCount"`
Status enums.Status `json:"status"`
Remark string `json:"remark"`
CreatedAt string `json:"createdAt"`
UpdatedAt string `json:"updatedAt"`
}