Commit f2d47934 by 伍思炜

Revert "更新忘记密码功能时找不到账号的反馈信息"

This reverts commit 50c6c858
parent 057f11cc
......@@ -150,9 +150,7 @@ public class ChooseController {
@RequestMapping(value = "selectSchoolInfo", method = RequestMethod.POST)
public ResponseData<School> selectSchoolInfo(@RequestParam("partner") String partner) {
String schoolId = appMapper.selectSchoolId(partner);
String serviceQrcode = schoolMapper.selectServiceQrcode(schoolId);
School school = new School();
school.setServiceQrcode(serviceQrcode);
School school = schoolMapper.selectById(schoolId);
return ResponseData.success(school);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment