cert.go 1.3 KB

1234567891011121314151617181920212223242526272829
  1. package models
  2. /**
  3. 请求地区数据返回参数
  4. */
  5. type LzydCert struct {
  6. Id string `json:"id"` // 序列id
  7. CertId string `json:"cert_id"` // 证书id
  8. Name string `json:"name"` // 证书简称
  9. Content string `json:"content"` // 证书详细内容
  10. Rule string `json:"rule"` // 证书规则
  11. Picture string `json:"picture"` // 证书图片
  12. Sponsor string `json:"sponsor"` // 证书主办方
  13. Council string `json:"council"` // 证书委员会
  14. CertType string `json:"cert_type"` // 证书类型
  15. FullName string `json:"full_name"` // 证书全称
  16. CreatedAt string `json:"created_at"` // 证书创建时间
  17. UpdatedAt string `json:"updated_at"` // 证书更新时间
  18. DeletedAt string `json:"deleted_at"` // 证书删除时间
  19. Icon string `json:"icon"` // 证书简称
  20. GetIcon string `json:"get_icon"` // 证书简称
  21. }
  22. type LzydCertUser struct {
  23. Id string `json:"id"` // 序列id
  24. CertId string `json:"cert_id"` // 证书id
  25. UserId string `json:"user_id"` // 证书id
  26. GetCertTime string `json:"get_cert_time"` // 证书id
  27. }