1234567891011121314151617181920212223242526 |
- package models
- /**
- 请求地区数据返回参数
- */
- type LzydMedal struct {
- Id string `json:"id"` // 序列id
- MedalId string `json:"cert_id"` // 证书id
- Name string `json:"name"` // 勋章简称
- Content string `json:"content"` // 勋章详细内容
- Rule string `json:"rule"` // 勋章规则
- CertType string `json:"cert_type"` // 勋章类型
- FullName string `json:"full_name"` // 勋章全称
- CreatedAt string `json:"created_at"` // 勋章创建时间
- UpdatedAt string `json:"updated_at"` // 勋章更新时间
- DeletedAt string `json:"deleted_at"` // 勋章删除时间
- Icon string `json:"icon"` // 勋章简称
- GetIcon string `json:"get_icon"` // 勋章简称
- }
- type LzydMedalUser struct {
- Id string `json:"id"` // 序列id
- MedalId string `json:"cert_id"` // 勋章id
- UserId string `json:"user_id"` // 用户id
- GetCertTime string `json:"get_cert_time"` // 获得勋章时间
- }
|