| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package seal_response
- import (
- "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
- )
- // 【响应结果】响应结果
- type SealDetailResponse struct {
- // 【印章ID】印章ID
- Id string `json:"id"`
- // 【印章名称】印章名称
- Name string `json:"name"`
- // 【法人单位id】法人单位id
- Owner string `json:"owner"`
- // 【印章所属法人单位名称】印章所属法人单位名称
- OwnerName string `json:"ownerName"`
- Status *common.SealStatus `json:"status"`
- // 【印章类型名称】印章类型名称
- SealCategoryName string `json:"sealCategoryName"`
- // 【印章使用的次数】印章使用的次数
- UseCount *int64 `json:"useCount,omitempty"`
- // 【印章分类】印章分类:COMPANY(\"单位印章\"),PERSONAL(\"个人签名\"),LP(\"法定代表人章\")
- Type_ string `json:"type"`
- // 【印章形式】印章形式:PHYSICS(物理章),ELECTRONIC(电子章),UKEY(Ukey印章),MOBILE(移动印章)
- SealAttribute string `json:"sealAttribute"`
- SealCertVo *common.SealCertVo `json:"sealCertVo,omitempty"`
- // 【印章形式】印章形式:PHYSICS(物理章),ELECTRONIC(电子章)
- Category string `json:"category,omitempty"`
- // 【创建时间】创建时间
- CreateTime string `json:"createTime"`
- // 【Ukey章的Ukey设备信息】Ukey章的Ukey设备信息
- Ukeys []*common.SealUkey `json:"ukeys,omitempty"`
- // 【电子印章签署校验方式】电子印章签署校验方式:NONE(签署人身份校验并使用云证书),OTP_TOKEN(动态口令校验并使用云证书),UKEY(Ukey校验并使用设备内证书)
- SealCheckType string `json:"sealCheckType,omitempty"`
- // 【印章所属组织id】印章所属组织id
- DepartmentId string `json:"departmentId,omitempty"`
- // 【印章所属组织的第三方业务系统id】印章所属组织的第三方业务系统id
- DepartmentOrigId string `json:"departmentOrigId,omitempty"`
- // 【第三方业务系统印章id】第三方业务系统印章id
- OpenSealId string `json:"openSealId,omitempty"`
- // 【印章自定义字段】印章自定义字段
- SealCustomFields []*common.SealCustomFieldResonse `json:"sealCustomFields"`
- // 【印章管理员】印章管理员
- SealAdminGroup []*common.SealPermissionGroupBean `json:"sealAdminGroup,omitempty"`
- // 【印章签章人】印章签章人
- SealUseGroup []*common.SealPermissionGroupBean `json:"sealUseGroup,omitempty"`
- PhysicalModel *common.OpenPhysicalModel `json:"physicalModel,omitempty"`
- // 【印章自定义角色】印章自定义角色
- SealDiyRoleRequestResponses []*common.SealDiyRoleRequestResponse `json:"sealDiyRoleRequestResponses,omitempty"`
- // 【印章创建方法】 印章创建方法:upload(上传图片创建印章),auto(自动生成)htmlTemplate(印章模板)
- Method string `json:"method,omitempty"`
- Spec *common.SealSpec `json:"spec,omitempty"`
- // 【自定义印章宽度】 自定义印章宽度 1、单位:毫米。 2、仅在spec(印章规格)传值为DIY_SPEC(自定义规格)时适用。
- Width string `json:"width,omitempty"`
- // 【自定义印章高度】 自定义印章高度 1、单位:毫米。 2、仅在spec(印章规格)传值为DIY_SPEC(自定义规格)时适用。
- Height string `json:"height,omitempty"`
- CustomSealAttribute *common.CustomSealAttributeResponse `json:"customSealAttribute,omitempty"`
- // 【是否开启印章雾化】 是否开启印章雾化
- OpenImageBlur string `json:"openImageBlur,omitempty"`
- // 【印章雾化图片Base64编码】 印章雾化图Base64编码
- BlurImage string `json:"blurImage,omitempty"`
- // 【印章图片Base64编码】 印章图片Base64编码
- Image string `json:"Image,omitempty"`
- }
|