Commit 50c6c858 by 伍思炜

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

parent 304d44b4
......@@ -150,7 +150,9 @@ public class ChooseController {
@RequestMapping(value = "selectSchoolInfo", method = RequestMethod.POST)
public ResponseData<School> selectSchoolInfo(@RequestParam("partner") String partner) {
String schoolId = appMapper.selectSchoolId(partner);
School school = schoolMapper.selectById(schoolId);
String serviceQrcode = schoolMapper.selectServiceQrcode(schoolId);
School school = new School();
school.setServiceQrcode(serviceQrcode);
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