| 123456789101112131415161718192021 |
- package common
- type PhysicalCategoryGroupResponse struct {
- // 【分组id】分组id
- Id string `json:"id"`
- // 【分组名称】分组名称
- Name string `json:"name"`
- // 【分组所属层级】分组所属层级,0为顶级,依次类推
- Level *int64 `json:"level,omitempty"`
- // 【分组中所有的业务分类数量】分组中所有的业务分类数量
- CategoryCount *int64 `json:"categoryCount,omitempty"`
- // 【分组中已停用的业务分类数量】分组中已停用的业务分类数量
- DisableCount *int64 `json:"disableCount,omitempty"`
- // 【分组创建时间】分组创建时间
- CreateTime string `json:"createTime"`
- // 【子分组】子分组
- Children []*PhysicalCategoryGroupResponse `json:"children,omitempty"`
- // 【用印流程列表】用印流程列表
- CategoryList []*PhysicalCategoryResponse `json:"categoryList,omitempty"`
- }
|