|
@@ -173,6 +173,8 @@ public class UserOpenController {
|
|
|
model.put("user", userOpen);
|
|
|
model.put("user_id", "\"" + userOpen.getUserId() + "\"");
|
|
|
List<Uptown> uptowns = rbMapper.selectUptown(userId);
|
|
|
+ // 新冠疫苗接种情况
|
|
|
+ model.put("vaccine", vaccineMapper.selectByUserId(userId));
|
|
|
if (uptowns != null && uptowns.size() > 0) {
|
|
|
Long uptown_id = uptowns.get(0).getUptownId();
|
|
|
String uptown_name = uptowns.get(0).getUptownName();
|
|
@@ -295,6 +297,8 @@ public class UserOpenController {
|
|
|
if (userId != 0 && userType != 0) {
|
|
|
model.put("user_id", "\"" + userId + "\"");
|
|
|
List<Uptown> uptowns = rbMapper.selectUptown(userId);
|
|
|
+ // 新冠疫苗接种情况
|
|
|
+ model.put("vaccine", vaccineMapper.selectByUserId(userId));
|
|
|
if (uptowns != null && uptowns.size() > 0) {
|
|
|
Long uptown_id = uptowns.get(0).getUptownId();
|
|
|
String uptown_name = uptowns.get(0).getUptownName();
|