16 lines
283 B
Go
16 lines
283 B
Go
package dto
|
|
|
|
type UserBadgeItem struct {
|
|
Id int64 `json:"id"`
|
|
UserId int64 `json:"user_id"`
|
|
BadgeId int64 `json:"badge_id"`
|
|
}
|
|
|
|
type UserBadgeListReq struct {
|
|
UserId int64 `v:"required" json:"user_id"`
|
|
}
|
|
|
|
type UserBadgeListRes struct {
|
|
List []UserBadgeItem `json:"list"`
|
|
}
|