ConsumptionPlatformCert.go 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package common
  2. type ConsumptionPlatformCert struct {
  3. // 【证书拥有者名称】证书拥有者名称
  4. TenantName string `json:"tenantName,omitempty"`
  5. // 【证书类型】证书类型
  6. TenantType string `json:"tenantType,omitempty"`
  7. // 【证书拥有者ID】证书拥有者ID
  8. TenantId string `json:"tenantId,omitempty"`
  9. // 【证书存储类型】证书存储类型
  10. CertMedium string `json:"certMedium,omitempty"`
  11. // 【序列号】序列号
  12. SerialNo string `json:"serialNo,omitempty"`
  13. // 【认证机构类型】认证机构类型
  14. CaType string `json:"caType,omitempty"`
  15. // 【创建时间】创建时间
  16. CreateTime string `json:"createTime,omitempty"`
  17. // 【证书开始时间】证书开始时间
  18. StartTime string `json:"startTime,omitempty"`
  19. // 【证书结束时间】证书结束时间
  20. EndTime string `json:"endTime,omitempty"`
  21. // 【交易流水号】交易流水号
  22. TradeId string `json:"tradeId,omitempty"`
  23. // 【证书拥有者手机号】证书拥有者手机号
  24. TenantMobile string `json:"tenantMobile,omitempty"`
  25. // 【证书拥有者邮箱】证书拥有者邮箱
  26. TenantEmail string `json:"tenantEmail,omitempty"`
  27. // 【证书拥有者账号】证书拥有者账号
  28. TenantAccountNo string `json:"tenantAccountNo,omitempty"`
  29. // 【证书拥有者编号】证书拥有者编号
  30. TenantNum string `json:"tenantNum,omitempty"`
  31. // 【证书拥有者法人单位信用代码】证书拥有者法人单位信用代码
  32. TenantRegisterNo string `json:"tenantRegisterNo,omitempty"`
  33. // 【来源】来源
  34. SourceType string `json:"sourceType,omitempty"`
  35. // 【申请人姓名】申请人姓名
  36. ApplicantName string `json:"applicantName,omitempty"`
  37. // 【申请人id】申请人id
  38. ApplicantId string `json:"applicantId,omitempty"`
  39. // 【申请人手机号】申请人手机号
  40. ApplicantMobile string `json:"applicantMobile,omitempty"`
  41. // 【申请人邮箱】申请人邮箱
  42. ApplicantEmail string `json:"applicantEmail,omitempty"`
  43. // 【申请人员工编号】申请人员工编号
  44. ApplicantNum string `json:"applicantNum,omitempty"`
  45. // 【申请人账号】申请人账号
  46. ApplicantAccountNo string `json:"applicantAccountNo,omitempty"`
  47. // 【是否升级记录】是否升级记录
  48. Upgrade bool `json:"upgrade,omitempty"`
  49. }