@@ -50,7 +50,7 @@ public class ProfileTpController extends BaseController {
@GetMapping("/list")
public TableDataInfo<ProfileTpVo> list(ProfileTpQueryBo bo) {
startPage();
- List<ProfileTpVo> list = iProfileTpService.selectListByBo(bo);
+ List<ProfileTpVo> list = iProfileTpService.selectList(bo);
return getDataTable(list);
}
@@ -28,7 +28,7 @@ public interface IProfileTpService extends IService<ProfileTp> {
*/
List<ProfileTpVo> queryList(ProfileTpQueryBo bo);
- List<ProfileTpVo> selectListByBo(ProfileTpQueryBo bo);
+ List<ProfileTpVo> selectList(ProfileTpQueryBo bo);
List<String> selectAllUseGoods(ProfileTpQueryBo bo);
@@ -55,7 +55,7 @@ public class ProfileTpServiceImpl extends ServiceImpl<ProfileTpMapper, ProfileTp
@Override
- public List<ProfileTpVo> selectListByBo(ProfileTpQueryBo bo) {
+ public List<ProfileTpVo> selectList(ProfileTpQueryBo bo) {
return baseMapper.selectListByBo(bo);