101577f163
- Updated import paths in multiple service files to reflect the new agent-desk module. - Added a new configuration file for agent-desk in the Docker setup.
15 lines
447 B
Go
15 lines
447 B
Go
package response
|
|
|
|
import "agent-desk/internal/pkg/enums"
|
|
|
|
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"`
|
|
}
|