This commit is contained in:
jiangyong 2026-07-05 12:44:05 +08:00
parent c726d792bd
commit 8bb537ff6a
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ func (e *StaffUser) Login(req *LoginReq) (*LoginRsp, error) {
var reqBody string var reqBody string
reqBody = fmt.Sprintf(`{"username":"%s","password":"%s", timestamp":"%s","type":"%s"}`, reqBody = fmt.Sprintf(`{"username":"%s","password":"%s", "timestamp":"%s","type":"%s"}`,
req.Username, req.Password, req.Timestamp, req.Type) req.Username, req.Password, req.Timestamp, req.Type)
reqUrl := e.GetBaseUrl() + "/ext/staff/user/login" reqUrl := e.GetBaseUrl() + "/ext/staff/user/login"