2026-04-09 10:01:23 +08:00
|
|
|
package response
|
|
|
|
|
|
2026-05-30 21:19:36 +08:00
|
|
|
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"`
|
|
|
|
|
}
|