feat(app): update
This commit is contained in:
29
pkg/dto/activity/WeekStarDTO.go
Normal file
29
pkg/dto/activity/WeekStarDTO.go
Normal file
@ -0,0 +1,29 @@
|
||||
package activity_dto
|
||||
|
||||
type StarGiftDTO struct {
|
||||
Name string `json:"name"`
|
||||
Price string `json:"price"`
|
||||
Img string `json:"img"`
|
||||
}
|
||||
type RankDTO struct {
|
||||
SortNo int `json:"sortNo"`
|
||||
YearWeek int `json:"yearWeek"`
|
||||
WeekStart string `json:"weekStart"`
|
||||
WeekEnd string `json:"weekEnd"`
|
||||
UserId string `json:"userId"`
|
||||
UserNo string `json:"userNo"`
|
||||
GiftCount int `json:"giftCount"`
|
||||
GiftAmount int `json:"giftAmount"`
|
||||
NickName string `json:"nickName"`
|
||||
Avatar string `json:"avatar"`
|
||||
NamingGiftId int32 `json:"namingGiftId"`
|
||||
NamingGiftDescription string `json:"namingGiftDescription"`
|
||||
JumpUrl string `json:"jumpUrl"`
|
||||
}
|
||||
|
||||
type RankResponse struct {
|
||||
YearWeek int `json:"yearWeek"`
|
||||
WeekStart string `json:"weekStart"`
|
||||
WeekEnd string `json:"weekEnd"`
|
||||
RankDTOList []*RankDTO `json:"rankDTOList"`
|
||||
}
|
||||
Reference in New Issue
Block a user