Browse Source

修改报名表缺少组别

tiaosheng
wang0018 5 years ago
parent
commit
6707874cdf
  1. 2
      mt/src/main/java/com/ccsens/mt/service/ExcelService.java

2
mt/src/main/java/com/ccsens/mt/service/ExcelService.java

@ -371,7 +371,7 @@ public class ExcelService implements IExcelService {
//查询组别,并赋值 //查询组别,并赋值
CompeteGroup competeGroup = competeGroupMapper.selectByPrimaryKey(competePlayer.getCompeteGroupId()); CompeteGroup competeGroup = competeGroupMapper.selectByPrimaryKey(competePlayer.getCompeteGroupId());
if (ObjectUtil.isNotNull(competeGroup)) { if (ObjectUtil.isNotNull(competeGroup)) {
competeJoin.setCompeteGroup(competePlayer.getName()); competeJoin.setCompeteGroup(competeGroup.getGroupName());
} }
// //身份证明查询,并赋值 // //身份证明查询,并赋值
// CommonFile commonFile = commonFileMapper.selectByPrimaryKey(competePlayer.getIdCardFrontFile()); // CommonFile commonFile = commonFileMapper.selectByPrimaryKey(competePlayer.getIdCardFrontFile());

Loading…
Cancel
Save