ContractCategoryGroupListResponse.go 452 B

123456789101112131415
  1. package common
  2. type ContractCategoryGroupListResponse struct {
  3. // 【公司ID】公司ID
  4. Id string `json:"id"`
  5. // 【公司名称】公司名称
  6. Name string `json:"name"`
  7. // 【管理员名称】管理员名称
  8. Charger string `json:"charger,omitempty"`
  9. // 【上级公司id】上级公司id
  10. ParentId string `json:"parentId,omitempty"`
  11. // 【模板分组】模板分组
  12. CategoryGroups []*CategoryResponse `json:"categoryGroups,omitempty"`
  13. }