SealBean.go 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package common
  2. type SealBean struct {
  3. // 【印章id】印章id
  4. Id string `json:"id"`
  5. // 【印章所属法人单位id】印章所属法人单位id
  6. Owner string `json:"owner"`
  7. // 【开放平台sealId】开放平台sealId
  8. OpenSealId string `json:"openSealId"`
  9. // 【印章所属法人单位名称】印章所属法人单位名称
  10. OwnerName string `json:"ownerName"`
  11. // 【印章名称】印章名称
  12. Name string `json:"name"`
  13. // 【印章分类】印章分类:COMPANY(\"法人单位公章\"), PERSONAL(\"个人签名\"), LP(\"法定代表人章\");
  14. Type_ string `json:"type"`
  15. Spec *SealSpec `json:"spec"`
  16. // 【用印宝识别码】用印宝识别码(物理用印)
  17. DeviceId string `json:"deviceId"`
  18. // 【蓝牙MAC地址】蓝牙MAC地址(物理用印)
  19. Bluetooth string `json:"bluetooth"`
  20. // 【创建时间】创建时间
  21. CreateTime string `json:"createTime"`
  22. Status *SealStatus `json:"status"`
  23. // 【印章使用次数】印章使用次数
  24. UseCount *int64 `json:"useCount"`
  25. // 【印章类型名称】印章类型名称
  26. SealCategoryName string `json:"sealCategoryName"`
  27. // 【印章管理员组】印章管理员组
  28. SealAdminGroup []*SealPermissionGroupBean `json:"sealAdminGroup"`
  29. // 【印章签章人组】印章签章人组
  30. SealUseGroup []*SealPermissionGroupBean `json:"sealUseGroup"`
  31. // 【印章形式】印章形式:PHYSICS(\"物理签章\"), ELECTRONIC(\"电子签章\"
  32. SealAttribute string `json:"sealAttribute"`
  33. // 【印章自定义字段】印章自定义字段
  34. SealCustomFields []*SealCustomField `json:"sealCustomFields"`
  35. // 【印章自定义角色】印章自定义角色
  36. SealDiyRoleRequestResponses []*SealDiyRoleRequestResponse `json:"sealDiyRoleRequestResponses"`
  37. // 【印章所属部门名称】印章所属部门名称
  38. DepartmentName string `json:"departmentName"`
  39. // 【印章所属部门id】印章所属部门id
  40. DepartmentId string `json:"departmentId"`
  41. }