🎨 优化用户登录接口&优化登录日志接口

This commit is contained in:
2025-10-14 01:23:40 +08:00
parent 562413c145
commit d81e9e917e
5 changed files with 20 additions and 4 deletions

View File

@@ -96,3 +96,10 @@ type SetTeacherInfo struct {
ExpectRate int `json:"expect_rate" form:"expect_rate"`
Weight int `json:"weight" form:"weight" `
}
type GetUserLoginLog struct {
request.PageInfo
UserId uint `json:"user_id" form:"user_id"`
UserName string `json:"user_name" form:"user_name"`
Ip string `json:"ip" form:"ip"`
}