| 123456789101112131415 |
- package common
- type OrganizationResponse struct {
- // 【集团id】集团id
- Id string `json:"id,omitempty"`
- // 【集团名称】集团名称
- Name string `json:"name,omitempty"`
- // 【集团类型】集团类型,PLATFORM_ORG(平台方集团),INDEPENDENT_ORG(独立管理集团)
- OrgType string `json:"orgType,omitempty"`
- // 【集团上级组织id】集团上级组织id
- ParentId string `json:"parentId,omitempty"`
- // 【创建时间】创建时间
- CreateTime string `json:"createTime,omitempty"`
- }
|