package common type CommonSealResponse struct { // 印章id Id string `json:"id"` // 印章名称 SealName string `json:"sealName"` // 印章状态 NORMAL(启用中),DISABLE(停用中),INVALID(失效中),REVOKE(已注销); CommonOrderSealStatus string `json:"commonOrderSealStatus"` // 印章形状 Shape string `json:"shape"` // 印章高度 Height string `json:"height"` // 印章宽度 Width string `json:"width"` // 印章文件唯一标识 SealKey string `json:"sealKey"` // 印章图片Base64 SealBase64 string `json:"sealBase64"` // 印章创建时间 CreateTime string `json:"createTime"` // 证书主体类型:PERSONAL(\"个人\")/CORPORATE(\"公司\") Type_ string `json:"type"` // 证书算法:RSA/SM2 Alg string `json:"alg"` // 印章存储的app名称 IntegrateAppName string `json:"integrateAppName"` }