|
@@ -53,7 +53,7 @@ public class GhDetailServiceImpl implements GhDetailService {
|
|
|
criteria.andGhIdEqualTo(accountId);
|
|
|
}
|
|
|
if (StringUtils.isNotEmpty(accountName)) {
|
|
|
- criteria.andGhNameLike(accountName);
|
|
|
+ criteria.andGhNameLike("%" + accountName + "%");
|
|
|
}
|
|
|
example.setPage(page);
|
|
|
long total = ghDetailMapper.countByExample(example);
|