|
@@ -8,12 +8,12 @@ type CCListRequest struct {
|
|
|
|
|
|
|
|
|
type CCListResponse struct {
|
|
|
- Value string `json:"value" form:"value"`
|
|
|
- Type string `json:"type" form:"type"`
|
|
|
- Reason string `json:"reason" form:"reason"`
|
|
|
- SourceUrl string `json:"sourceURL" form:"sourceURL"`
|
|
|
- CreatedAt string `json:"createdAt" form:"createdAt"`
|
|
|
- ExpiredAt string `json:"expiredAt" form:"expiredAt"`
|
|
|
+ Value string `json:"value" form:"value" gorm:"value"`
|
|
|
+ Type string `json:"type" form:"type" gorm:"type"`
|
|
|
+ Reason string `json:"reason" form:"reason" gorm:"reason"`
|
|
|
+ SourceURL string `json:"sourceURL" form:"sourceURL" gorm:"sourceURL"`
|
|
|
+ CreatedAt int64 `json:"createdAt" form:"createdAt" gorm:"createdAt"`
|
|
|
+ ExpiredAt int64 `json:"expiredAt" form:"expiredAt" gorm:"expiredAt"`
|
|
|
}
|
|
|
|
|
|
type CCStateRequest struct {
|