Browse Source

班级学生导入时获取学生最新的行政班加排序

tags/正式版本
王宁 2 years ago
parent
commit
04c4b01446
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      suser/src/main/resources/mapper/gradeclass/ClassStudentMapper.xml

+ 1
- 1
suser/src/main/resources/mapper/gradeclass/ClassStudentMapper.xml View File

@@ -57,7 +57,7 @@
57 57
     <select id="getClassIdByStuId" resultType="java.lang.Integer">
58 58
         select c.classid
59 59
         from t_class_student cs left join t_class c on cs.classid=c.classid
60
-        where cs.studentid=#{studentid} and c.classtype=1 and c.classstate=1 limit 1
60
+        where cs.studentid=#{studentid} and c.classtype=1 and c.classstate=1 order by c.classid desc limit 1
61 61
     </select>
62 62
     <!--根据班级id和学生id获取班级学生信息-->
63 63
     <select id="getByClassIdStudentId" resultType="java.lang.Integer">

Loading…
Cancel
Save