OpenSealUKeyInfoRequest.go 1.1 KB

1234567891011121314151617
  1. package common
  2. type OpenSealUKeyInfoRequest struct {
  3. // <ext>core:true</ext> 【Ukey信息】Ukey设备号
  4. UkeyNo string `json:"ukeyNo,omitempty"`
  5. // <ext>core:true</ext> 【证书序列号】证书序列号
  6. SerialNo string `json:"serialNo,omitempty"`
  7. // <ext>core:true</ext> 【证书算法】证书算法 【传参】 取值范围:RSA(国际算法),SM2(国密算法)。
  8. SigAlgType string `json:"sigAlgType,omitempty"`
  9. // <ext>core:true</ext> 【证书颁发机构】证书颁发机构 【传参】 1、取值范围:sheca(上海CA),gdca(广东CA),cfca(CFCA),cwca(西部CA),selfca(防篡改证书)。 2、传入的证书颁发机构需在电子签章管理后台配置的【系统可用Ukey范围】内。
  10. CaType string `json:"caType,omitempty"`
  11. // <ext>core:true;format:date</ext> 【证书开始时间】证书开始时间 【传参】 日期格式:yyyy-MM-dd HH:mm:ss。
  12. StartTime string `json:"startTime,omitempty"`
  13. // <ext>core:true;format:date</ext> 【证书结束时间】证书结束时间 【传参】 日期格式:yyyy-MM-dd HH:mm:ss。
  14. EndTime string `json:"endTime,omitempty"`
  15. }