mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-19 15:56:53 +08:00
提交用户日志输出目录
This commit is contained in:
@@ -34,10 +34,10 @@ public class CasesRecommendLaunchImportServiceImpl implements ICasesRecommendLau
|
||||
|
||||
@Override
|
||||
public String importData(List<List<Object>> dataList) {
|
||||
if (CollectionUtil.isEmpty(dataList)) {
|
||||
if (CollectionUtil.isEmpty(dataList) || dataList.size() < 1) {
|
||||
throw new RuntimeException("导入数据为空");
|
||||
}
|
||||
int totalNum = dataList.size();
|
||||
int totalNum = dataList.size() - 1;
|
||||
int successNum = 0;
|
||||
int failNum = 0;
|
||||
String importId = IdUtil.getSnowflakeNextId() + "";
|
||||
|
||||
Reference in New Issue
Block a user