作者 yangfu

修改: 用户密码修改

@@ -179,7 +179,7 @@ func ChangePassword(header *protocol.RequestHeader, request *protocol.ChangePass @@ -179,7 +179,7 @@ func ChangePassword(header *protocol.RequestHeader, request *protocol.ChangePass
179 transactionContext.RollbackTransaction() 179 transactionContext.RollbackTransaction()
180 }() 180 }()
181 rsp = &protocol.ChangePasswordResponse{} 181 rsp = &protocol.ChangePasswordResponse{}
182 - if err = UserAuthService.ChangeUserPassword(header.UserId, request.NewPwd, request.OldPwd, fmt.Sprintf("%v", header.SimNum)); err != nil { 182 + if err = UserAuthService.ChangeUserPassword(header.UserId, request.NewPwd, request.OldPwd, request.Phone); err != nil {
183 err = protocol.NewCustomMessage(1, err.Error()) 183 err = protocol.NewCustomMessage(1, err.Error())
184 return 184 return
185 } 185 }
@@ -76,6 +76,7 @@ type ChangePasswordRequest struct { @@ -76,6 +76,7 @@ type ChangePasswordRequest struct {
76 NewPwd string `json:"newPwd" valid:"Required"` 76 NewPwd string `json:"newPwd" valid:"Required"`
77 ConfirmPwd string `json:"confirmPwd" valid:"Required"` 77 ConfirmPwd string `json:"confirmPwd" valid:"Required"`
78 OldPwd string `json:"oldPwd" valid:"Required"` 78 OldPwd string `json:"oldPwd" valid:"Required"`
  79 + Phone string `json:"phone" valid:"Required"`
79 } 80 }
80 type ChangePasswordResponse struct { 81 type ChangePasswordResponse struct {
81 } 82 }