12 lines
385 B
Go
12 lines
385 B
Go
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"`
|
||
}
|