You've already forked FrameTour-BE
refactor(scenic): 移除景区移动端控制器和服务中的分页查询功能
- 删除 AppScenicController 中的 pageQuery 接口方法 - 删除 AppScenicController 中的 deviceCountByScenicId 接口方法 - 删除 AppScenicController 中的 scenicListByLnLa 接口方法 - 从 AppScenicService 接口中移除 pageQuery 方法定义 - 从 AppScenicService 接口中移除 deviceCountByScenicId 方法定义 - 从 AppScenicService 接口中移除 scenicListByLnLa 方法定义 - 完全移除 AppScenicController 类文件 - 简化 AppScenicServiceImpl 中
This commit is contained in:
@@ -21,17 +21,11 @@ import java.util.List;
|
||||
* @Date:2024/12/6 10:23
|
||||
*/
|
||||
public interface AppScenicService {
|
||||
ApiResponse<PageInfo<ScenicEntity>> pageQuery(ScenicReqQuery scenicReqQuery);
|
||||
|
||||
ApiResponse<ScenicDeviceCountVO> deviceCountByScenicId(Long scenicId);
|
||||
|
||||
ApiResponse<ScenicRespVO> getDetails(Long id);
|
||||
|
||||
ApiResponse<ScenicLoginRespVO> login(ScenicLoginReq scenicLoginReq) throws Exception;
|
||||
|
||||
ApiResponse<ScenicRegisterRespVO> register(ScenicRegisterReq scenicRegisterReq);
|
||||
|
||||
List<ScenicAppVO> scenicListByLnLa(ScenicIndexVO scenicIndexVO);
|
||||
|
||||
ApiResponse<List<DeviceRespVO>> getDevices(Long scenicId);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user