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