Browse Source

20210226v1.0

recovery
zy_Java 4 years ago
parent
commit
c92c2b5274
  1. 3
      tall/src/main/java/com/ccsens/tall/service/ExcelService.java
  2. 4
      tcm/src/main/resources/application.yml

3
tall/src/main/java/com/ccsens/tall/service/ExcelService.java

@ -1097,7 +1097,8 @@ public class ExcelService implements IExcelService {
if(ObjectUtil.isNull(roleRow)){
throw new BaseException(CodeEnum.NOT_ROW.addMsg(sheet.getSheetName() + (2)));
}
for (int i = 3; i < sheet.getLastRowNum(); i++) {
for (int i = 2; i < sheet.getLastRowNum() + 1; i++) {
List<ProTaskDetail> taskNameList = null;
XSSFRow pluginRow = sheet.getRow(i);
if(ObjectUtil.isNull(pluginRow)){

4
tcm/src/main/resources/application.yml

@ -1,5 +1,5 @@
spring:
profiles:
active: dev
include: common, util-dev
active: test
include: common, util-test

Loading…
Cancel
Save