SealApproveRange.go 519 B

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