zhongrj
2024-01-11 af21084fa4d1e5f8432f61fbd26a3e4e99495616
src/main/java/org/springblade/modules/task/service/ITaskHotelReportingService.java
@@ -17,6 +17,7 @@
package org.springblade.modules.task.service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.core.mp.base.BaseService;
import org.springblade.modules.task.dto.TaskHotelReportingDTO;
import org.springblade.modules.task.entity.TaskHotelReportingEntity;
@@ -28,7 +29,7 @@
 * @author BladeX
 * @since 2023-11-06
 */
public interface ITaskHotelReportingService extends BaseService<TaskHotelReportingEntity> {
public interface ITaskHotelReportingService extends IService<TaskHotelReportingEntity> {
   /**
    * 自定义分页
@@ -47,5 +48,5 @@
    */
   boolean saveHotelReporting(TaskHotelReportingDTO taskHotelReporting);
   Boolean updateHotelReporting(TaskHotelReportingEntity taskHotelReporting) throws Exception;
   Boolean updateHotelReporting(TaskHotelReportingVO taskHotelReporting) throws Exception;
}