|
@@ -240,5 +240,16 @@ public class ArchiveFileClientImpl implements ArchiveFileClient {
|
|
|
return this.iArchiveFileService.updateArchiveFileByBoxNameOne(boxName, boxNumber);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public boolean updateRectificationById(Long id,Integer rectification) {
|
|
|
+ try {
|
|
|
+ fileMapper.updateRectificationById(id,rectification);
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|