hejinbo 2 gadus atpakaļ
vecāks
revīzija
80f6e726f8

+ 1
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/DeptIdentifyServiceImpl.java Parādīt failu

@@ -517,6 +517,7 @@ public class DeptIdentifyServiceImpl implements IDeptIdentifyService {
517 517
             deptIdentify.setOperName(sysUser.getNickName());
518 518
             deptIdentify.setOperPhone(sysUser.getPhonenumber());
519 519
             deptIdentify.setOperUserName(sysUser.getUserName());
520
+            deptIdentify.setUserId(deptIdentify.getUserId());
520 521
             //更新
521 522
             int i = deptIdentifyMapper.updateDeptIdentify(deptIdentify);
522 523
             if (i > 0) {

+ 1
- 0
ruoyi-system/src/main/resources/mapper/wisdomarbitrate/DeptIdentifyMapper.xml Parādīt failu

@@ -52,6 +52,7 @@
52 52
             AND identify_type = 1
53 53
             AND  del_flag =0
54 54
         </where>
55
+        ORDER BY id DESC
55 56
     </select>
56 57
 
57 58