🎨 新增获取已购课程接口&

This commit is contained in:
2025-08-09 08:33:28 +08:00
parent 82c6003b4a
commit e4bfdc31da
4 changed files with 63 additions and 3 deletions

View File

@@ -6,9 +6,10 @@ 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
Status int `json:"status" form:"status"` // 状态 0-草稿 1-已发布 2-待审核 3-审核不通过
CategoryId int `json:"categoryId" form:"categoryId"` // 分类ID
TeacherId int `json:"teacherId" form:"teacherId"` // 讲师ID
Status int `json:"status" form:"status"` // 状态 0-草稿 1-已发布 2-待审核 3-审核不通过
UserId uint `json:"userId" form:"userId"` // 用户ID
}
type DeleteIds struct {