|
@@ -271,11 +271,11 @@ public class GameAthleteServiceImpl implements IGameAthleteService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- lqw.eq(StringUtils.isNotBlank(bo.getAthleteCode()), GameAthlete::getAthleteCode, bo.getAthleteCode());
|
|
|
+ lqw.like(StringUtils.isNotBlank(bo.getAthleteCode()), GameAthlete::getAthleteCode, bo.getAthleteCode());
|
|
|
lqw.like(StringUtils.isNotBlank(bo.getName()), GameAthlete::getName, bo.getName());
|
|
|
lqw.eq(StringUtils.isNotBlank(bo.getGroupType()), GameAthlete::getGroupType, bo.getGroupType());
|
|
|
lqw.eq(StringUtils.isNotBlank(bo.getStatus()), GameAthlete::getStatus, bo.getStatus());
|
|
|
- lqw.eq(StringUtils.isNotBlank(bo.getPhone()), GameAthlete::getPhone, bo.getPhone());
|
|
|
+ lqw.like(StringUtils.isNotBlank(bo.getPhone()), GameAthlete::getPhone, bo.getPhone());
|
|
|
lqw.like(StringUtils.isNotBlank(bo.getLocation()), GameAthlete::getLocation, bo.getLocation());
|
|
|
return lqw;
|
|
|
}
|