Files
36Wisdom/biz/model/dto/chapter_review.go
T
2026-08-14 12:13:02 +08:00

18 lines
390 B
Go

package dto
type ChapterReviewItem struct {
Id int64 `json:"id"`
ChildId int64 `json:"child_id"`
StrategyId int64 `json:"strategy_id"`
LevelIds string `json:"level_ids"`
Status int `json:"status"`
}
type ChapterReviewListReq struct {
ChildId int64 `v:"required" json:"child_id"`
}
type ChapterReviewListRes struct {
List []ChapterReviewItem `json:"list"`
}