package request

type AddWechatPlatformReq struct {
	Name      string `description:"公众号名称"`
	Link      string `description:"公众号文章链接"`
	TagIdList []int  `description:"标签列表"`
}

type OpWechatPlatformReq struct {
	Status           int `description:"0:禁用,1:启用"`
	WechatPlatformId int `description:"公众号id"`
}

type RefreshWechatPlatformReq struct {
	WechatPlatformId int `description:"公众号id"`
}

type AddQuestionReq struct {
	Content string `description:"公众号名称"`
}

type EditQuestionReq struct {
	QuestionId int    `description:"问题id"`
	Content    string `description:"公众号名称"`
}

type BeachOpAbstractReq struct {
	WechatArticleAbstractIdList    []int  `description:"摘要id"`
	NotWechatArticleAbstractIdList []int  `description:"不需要的摘要id"`
	KeyWord                        string `description:"关键字"`
	TagId                          int    `description:"标签id"`
	IsSelectAll                    bool   `description:"是否选择所有摘要"`
}