16 lines
315 B
Go
16 lines
315 B
Go
package dto
|
|
|
|
type UserCollectionItem struct {
|
|
Id int64 `json:"id"`
|
|
UserId int64 `json:"user_id"`
|
|
StrategyId int64 `json:"strategy_id"`
|
|
}
|
|
|
|
type UserCollectionListReq struct {
|
|
UserId int64 `v:"required" json:"user_id"`
|
|
}
|
|
|
|
type UserCollectionListRes struct {
|
|
List []UserCollectionItem `json:"list"`
|
|
}
|