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.
19 lines
751 B
19 lines
751 B
9 months ago
|
package response
|
||
|
|
||
|
import "pure-admin/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:"sortIndex"` //序号索引
|
||
|
RelationTitle string `json:"relationTitle"` //关联标题
|
||
|
|
||
|
}
|