18 lines
390 B
Go
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"`
|
|
}
|