2bbf42b741
Remove Agent Desk users, roles, login sessions, tokens, and local permission persistence. Expose the backend as an embeddable ai-agent module with host-provided subject lookup and operation authorization callbacks, and complete the frontend/backend repository split.
33 lines
793 B
Go
33 lines
793 B
Go
package builders
|
|
|
|
import (
|
|
"code.tczkiot.com/wlw/ai-agent/internal/models"
|
|
"code.tczkiot.com/wlw/ai-agent/internal/pkg/dto/response"
|
|
"time"
|
|
)
|
|
|
|
func BuildCompany(item *models.Company) *response.CompanyResponse {
|
|
if item == nil {
|
|
return nil
|
|
}
|
|
return &response.CompanyResponse{
|
|
ID: item.ID,
|
|
Name: item.Name,
|
|
Code: item.Code,
|
|
Status: item.Status,
|
|
Remark: item.Remark,
|
|
CreatedAt: item.CreatedAt.Format(time.DateTime),
|
|
UpdatedAt: item.UpdatedAt.Format(time.DateTime),
|
|
}
|
|
}
|
|
|
|
func BuildCompanyList(list []models.Company) []response.CompanyResponse {
|
|
results := make([]response.CompanyResponse, 0, len(list))
|
|
for _, item := range list {
|
|
if company := BuildCompany(&item); company != nil {
|
|
results = append(results, *company)
|
|
}
|
|
}
|
|
return results
|
|
}
|