上传代码

hehai
zhiyong.ning 4 years ago
parent b1d580117d
commit fdf5990086
  1. 2
      src/main/java/com/msdw/tms/entity/vo/StudentVo.java
  2. 6
      src/main/resources/mapper/tms/StudentDao.xml

@ -40,6 +40,8 @@ public class StudentVo extends StudentEntity {
private String schoolAppellationName;
//绑定所属院校id
private Integer schoolAppellationId;
//学生学号
private String workNumber;
//token
private String token;
}

@ -29,8 +29,8 @@
u.disableAccount,
u.lastLoginTime,
s.roleId,
s.workNumber,
s.isdel ,
s.workNumber as workNumber,
s.isdel,
s.studentId
FROM
hr_user_info u,
@ -43,7 +43,7 @@
AND u.isdel = 0
AND l.isdel = 0
AND s.isdel = 0
<if test="searchContent!=null">AND (u.account LIKE CONCAT('%',#{searchContent},'%') OR u.userName LIKE CONCAT('%',#{searchContent},'%') OR s.workNumber LIKE CONCAT('%',#{searchContent},'%'))</if>
<if test="searchContent!=null">AND (l.schoolName LIKE CONCAT('%',#{searchContent},'%') OR u.userName LIKE CONCAT('%',#{searchContent},'%'))</if>
ORDER BY studentId DESC
</select>

Loading…
Cancel
Save