16 lines
398 B
Go
16 lines
398 B
Go
package request
|
|
|
|
import "git.echol.cn/loser/lckt/model/common/request"
|
|
|
|
type GetList struct {
|
|
request.PageInfo
|
|
Title string `json:"title" form:"title"` // 文章标题
|
|
// 分类ID
|
|
CategoryId int `json:"categoryId" form:"categoryId"` // 分类ID
|
|
TeacherId int `json:"teacherId" form:"teacherId"` // 讲师ID
|
|
}
|
|
|
|
type DeleteIds struct {
|
|
Ids []int `json:"ids" form:"ids" binding:"required"`
|
|
}
|