linwe
2024-06-19 6b113a88e7b7b625405cc0b1d46efa22d46c71a2
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);
}