yangdamao 2 anos atrás
pai
commit
1b17149856

+ 1 - 1
zhongzheng-admin/src/main/java/com/zhongzheng/controller/base/ProfileTpController.java

@@ -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);
     }
 

+ 1 - 1
zhongzheng-system/src/main/java/com/zhongzheng/modules/base/service/IProfileTpService.java

@@ -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);

+ 1 - 1
zhongzheng-system/src/main/java/com/zhongzheng/modules/base/service/impl/ProfileTpServiceImpl.java

@@ -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);
     }