MobileSignResult.go 190 B

123456789
  1. package common
  2. type MobileSignResult struct {
  3. // 签名结果(PKCS#7结构)
  4. P7SignResult string `json:"p7SignResult"`
  5. // 证书文件base64
  6. CertBase64 string `json:"certBase64"`
  7. }