medal.go 1.1 KB

1234567891011121314151617181920212223242526
  1. package models
  2. /**
  3. 请求地区数据返回参数
  4. */
  5. type LzydMedal struct {
  6. Id string `json:"id"` // 序列id
  7. MedalId string `json:"cert_id"` // 证书id
  8. Name string `json:"name"` // 勋章简称
  9. Content string `json:"content"` // 勋章详细内容
  10. Rule string `json:"rule"` // 勋章规则
  11. CertType string `json:"cert_type"` // 勋章类型
  12. FullName string `json:"full_name"` // 勋章全称
  13. CreatedAt string `json:"created_at"` // 勋章创建时间
  14. UpdatedAt string `json:"updated_at"` // 勋章更新时间
  15. DeletedAt string `json:"deleted_at"` // 勋章删除时间
  16. Icon string `json:"icon"` // 勋章简称
  17. GetIcon string `json:"get_icon"` // 勋章简称
  18. }
  19. type LzydMedalUser struct {
  20. Id string `json:"id"` // 序列id
  21. MedalId string `json:"cert_id"` // 勋章id
  22. UserId string `json:"user_id"` // 用户id
  23. GetCertTime string `json:"get_cert_time"` // 获得勋章时间
  24. }