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

12 lines
385 B
Go
Raw Normal View History

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"`
}