|
@@ -445,7 +445,7 @@ public class UserService extends JedisUtil {
|
445
|
445
|
Integer usertype = userVo.getUsertype();
|
446
|
446
|
userLog.setUsertype(usertype);
|
447
|
447
|
String ultype = user.getUltype();
|
448
|
|
- if (N_Utils.isNotEmpty(ultype) && ultype.equals("p_web") && usertype != null) {
|
|
448
|
+ if (N_Utils.isNotEmpty(ultype) && (ultype.equals("p_web") || ultype.equals("live_pc")) && usertype != null) {
|
449
|
449
|
//网页端学生和教师合并登录,前端传p_web,拼接完整的ultype
|
450
|
450
|
if (usertype == 2) {
|
451
|
451
|
userLog.setUltype(user.getUltype() + "_s");
|