| 1234567891011121314 |
- package common
- type TemplateGroupCompany struct {
- // 【单位ID】单位ID
- Id string `json:"id"`
- // 【单位名称】单位名称
- Name string `json:"name"`
- // 【管理员名称】管理员名称
- Charger string `json:"charger,omitempty"`
- // 【上级组织ID】上级组织ID
- ParentId string `json:"parentId,omitempty"`
- TemplateGroup *TemplateGroupCompanyTemplateGroup `json:"templateGroup"`
- }
|