|
@@ -5,10 +5,7 @@ import java.io.ByteArrayOutputStream;
|
|
|
import java.io.IOException;
|
|
import java.io.IOException;
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
|
import java.net.URL;
|
|
import java.net.URL;
|
|
|
-import java.util.Collections;
|
|
|
|
|
-import java.util.List;
|
|
|
|
|
-import java.util.Map;
|
|
|
|
|
-import java.util.Objects;
|
|
|
|
|
|
|
+import java.util.*;
|
|
|
|
|
|
|
|
import cn.hutool.json.JSONArray;
|
|
import cn.hutool.json.JSONArray;
|
|
|
import cn.hutool.json.JSONUtil;
|
|
import cn.hutool.json.JSONUtil;
|
|
@@ -339,6 +336,8 @@ public class FsPackageServiceImpl implements IFsPackageService {
|
|
|
//重命名
|
|
//重命名
|
|
|
fsPackage.setPackageName(fsPackage.getPackageName() + " - 副本");
|
|
fsPackage.setPackageName(fsPackage.getPackageName() + " - 副本");
|
|
|
fsPackage.setSecondName(fsPackage.getSecondName() + " - 副本");
|
|
fsPackage.setSecondName(fsPackage.getSecondName() + " - 副本");
|
|
|
|
|
+ fsPackage.setCreateTime(new Date());
|
|
|
|
|
+ fsPackage.setUpdateTime(new Date());
|
|
|
fsPackageMapper.insertFsPackage(fsPackage);
|
|
fsPackageMapper.insertFsPackage(fsPackage);
|
|
|
}
|
|
}
|
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|