feat(app): update

This commit is contained in:
Yangtao
2025-11-19 14:24:13 +08:00
parent 1eac66d7fd
commit 0c34585649
329 changed files with 10760 additions and 281 deletions

53
pkg/dto/ExamDTO.go Normal file
View File

@ -0,0 +1,53 @@
package dto
type GetExaminerDTO struct {
NickName string
UserNo string
UserId string
Avatar string
}
type GetExamDTO struct {
Price string // 砖石价格
ExamID string // 考试ID
Gender string // 参加考试的人的性别 男生-G 女生-M 不限-N
FirstFree string // y n
}
type RateDTO struct {
Content string
}
type ExamNoticeDTO struct {
Content string
CreateAt string
ImgUrl string
}
type ExamOrderLstDTO struct {
OrderLst []*ExamOrderDTO
HasMore bool
}
type ExamOrderDTO struct {
OrderNo string
NickName string
UserNo string
Avatar string
CreatTime string
SkillName string
MapName string
Level string
Requirement string
Price string
OrderStatus string
OrderActionLst []string
Remark string
UserId string
FirstFree string
ReviewStatus int // 2-通过 1-未通过 0-未审核
ReviewReason string
RateContent string
SupportReply string
SupportReason string
}