Files
platforms/backend/internal/platform/org_service_person.go

12 lines
385 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package platform
// OrgServicePerson 对应 org_service_person表示具备一个或多个服务角色的人员。
type OrgServicePerson struct {
Identity string `json:"identity"`
Name string `json:"name"`
PhoneMasked string `json:"phoneMasked"`
Roles string `json:"roles"`
WorkStatus string `json:"workStatus"`
Credential string `json:"credentialStatus"`
}