直接出数量

master
jiahuiwen 2021-12-22 16:01:17 +08:00
parent 78ab35311f
commit a63eedfac5
1 changed files with 4 additions and 2 deletions

View File

@ -145,7 +145,9 @@ public class UserInfoController {
has11 ++;
}
}
LOGGER.info("===============> getHeroInfo uid={} has11={} reward={}", uid, has11, (12059 + "#" + has11 * 40));
if (has11 > 2) {
LOGGER.info("===============> getHeroInfo uid={} has11={} reward={}", uid, has11, (12059 + "#" + (has11 - 1) * 40));
}
}
return "暂无展示信息";
}
@ -154,7 +156,7 @@ public class UserInfoController {
@RequestMapping(value = "/sendAppointMail", method = {RequestMethod.POST, RequestMethod.GET})
@ResponseBody
public String sendAppointMail(ModelMap map, HttpServletRequest request) throws Exception {
return "暂无展示信息";
}