11 lines
204 B
Go
11 lines
204 B
Go
package dto
|
|
|
|
type GiftWallDTO struct {
|
|
GiftId string
|
|
GiftName string
|
|
GiftImgUrl string
|
|
ReceivedCount string
|
|
GiftPrice string
|
|
IsExpire string // 礼物是否过期 1=过期
|
|
}
|