Commit 8f3b046a46b604de024be9cd101c7fcd32384f8b
1 parent
5b80c8d1
1
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/bsth/service/ddexam/impl/DdexamServiceImpl.java
| ... | ... | @@ -470,7 +470,7 @@ public class DdexamServiceImpl implements DdexamService { |
| 470 | 470 | userRoles.setRoles(73); //统一用73考生 |
| 471 | 471 | bsthCSysUserRolesRepository.save(userRoles); //权限存库 |
| 472 | 472 | List<LineConfigSt> lineConfigList = lineConfigStRepository.findAll(); //线调 线路相关配置信息 |
| 473 | - Integer linebumber = lineRepository.findAll().size(); //线路数量 线路code | |
| 473 | + Integer linebumber = lineRepository.findAll().size() + 1; //线路数量 线路code | |
| 474 | 474 | String [] mtline = {"A线","B线","C线","D线","E线","F线"}; //对应模板6条线 换成线路name |
| 475 | 475 | List<LineInformationSt> litst = (List<LineInformationSt>) LineInformationStRepository.findAll(); //所有模板线路标准和线路 |
| 476 | 476 | if(litst.size() != 6){ | ... | ... |