🎨 新增讲师相关接口(待完善)

This commit is contained in:
2025-07-20 03:07:42 +08:00
parent 48ddb72cf2
commit 70f65c96bd
10 changed files with 186 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
package app
import "git.echol.cn/loser/lckt/global"
type TeacherApply struct {
global.GVA_MODEL
UserId uint `json:"userId"`
Reason string `json:"reason" gorm:"type:varchar(255);comment:申请理由"`
Status int8 `json:"status" gorm:"default:0;comment:申请状态 0 待审核 1 通过 2 拒绝"`
ExpectRate string `json:"expectRate" gorm:"type:varchar(255);comment:期望分成比例"`
Phone string `json:"phone" gorm:"type:varchar(20);comment:联系电话"`
Nickname string `json:"nickname" gorm:"type:varchar(255);comment:讲师名称"`
}
func (TeacherApply) TableName() string {
return "teacher_apply"
}

View File

@@ -66,3 +66,17 @@ type RegisterReq struct {
UserType int8 `json:"user_type" form:"user_type"`
UserLabel int64 `json:"user_label" form:"user_label"`
}
type ApplyTeacherReq struct {
UserId int `json:"user_id" form:"user_id" vd:"@:len($)>0; msg:'用户ID不能为空'"`
Phone string `json:"phone" form:"phone" vd:"@:len($)>0; msg:'手机号码不能为空'"`
NickName string `json:"nick_name" form:"nick_name" vd:"@:len($)>0; msg:'昵称不能为空'"`
Desc string `json:"desc" form:"desc" vd:"@:len($)>0; msg:'申请理由不能为空'"`
ExpectRate string `json:"expect_rate" form:"expect_rate" vd:"@:len($)>0; msg:'期望分成比例不能为空'"`
}
type GetTeacherApplyListReq struct {
request.PageInfo
Phone string `json:"phone" form:"phone"`
Nickname string `json:"nickname" form:"nickname"`
}