package common // 【证书列表】证书列表 type CertStatisticQueryResultResponse struct { // 【证书主体id】证书主体id TenantId string `json:"tenantId,omitempty"` // 【证书主体名称】证书主体名称 TenantName string `json:"tenantName,omitempty"` // 【证书主体类型】证书主体类型 CORPORATE(平台方法人单位),COMPANY(外部法人单位),INNER_COMPANY(内部法人单位),PERSONAL(个人) TenantType string `json:"tenantType,omitempty"` // 【事件型证书数量】事件型证书数量 EventCertCounts string `json:"eventCertCounts,omitempty"` // 【云证书-长期型数量】云证书-长期型数量 LongCertCounts string `json:"longCertCounts,omitempty"` // 【Ukey证书数量】Ukey证书数量 UkeyCertCounts string `json:"ukeyCertCounts,omitempty"` // 【移动证书数量】移动证书数量 ThresholdCertCounts string `json:"thresholdCertCounts,omitempty"` }