1234567891011121314151617181920212223242526272829 |
- package models
- /**
- 请求地区数据返回参数
- */
- type LzydCert struct {
- Id string `json:"id"` // 序列id
- CertId string `json:"cert_id"` // 证书id
- Name string `json:"name"` // 证书简称
- Content string `json:"content"` // 证书详细内容
- Rule string `json:"rule"` // 证书规则
- Picture string `json:"picture"` // 证书图片
- Sponsor string `json:"sponsor"` // 证书主办方
- Council string `json:"council"` // 证书委员会
- 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 LzydCertUser struct {
- Id string `json:"id"` // 序列id
- CertId string `json:"cert_id"` // 证书id
- UserId string `json:"user_id"` // 证书id
- GetCertTime string `json:"get_cert_time"` // 证书id
- }
|