| 1234567891011 |
- package common
- type SealApproveRange struct {
- // 范围分类【范围分类】取值范围: SEAL_CATEGORY(\"印章类型\"),SEAL_ORG(\"印章所属组织\")
- ItemType string `json:"itemType"`
- // 所属部门范围集合【所属部门范围集合】,为空时则为全部部门范围
- DepartmentIds []string `json:"departmentIds,omitempty"`
- // 所属印章类型范围集合【所属印章类型范围集合】,为空时则为全部印章类型范围
- SealCategoryIds []string `json:"sealCategoryIds"`
- }
|