You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
666 B
16 lines
666 B
package response
|
|
|
|
import "pure/global"
|
|
|
|
type BannerListResponse struct {
|
|
global.BASE_ID
|
|
RelationId string `json:"relationId"` //关联项目id
|
|
RelationType string `json:"relationType"` //关联类型 01-任务
|
|
Title string `json:"title"` //标题
|
|
CoverUrl string `json:"coverUrl"` //封面图
|
|
LinkType string `json:"linkType"` //链接类型 0:内链 1:外链
|
|
Link string `json:"link"` //链接地址
|
|
Type string `json:"type"` //任务-0101 平台奖励页-0102
|
|
Status string ` json:"status"` //状态 0=下架 1=上架
|
|
SortIndex int `json:"sort_index"` //序号索引
|
|
}
|
|
|