| | |
| | | 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; |
| | |
| | | * @author BladeX |
| | | * @since 2023-11-06 |
| | | */ |
| | | public interface ITaskHotelReportingService extends BaseService<TaskHotelReportingEntity> { |
| | | public interface ITaskHotelReportingService extends IService<TaskHotelReportingEntity> { |
| | | |
| | | /** |
| | | * 自定义分页 |
| | |
| | | */ |
| | | boolean saveHotelReporting(TaskHotelReportingDTO taskHotelReporting); |
| | | |
| | | Boolean updateHotelReporting(TaskHotelReportingEntity taskHotelReporting) throws Exception; |
| | | Boolean updateHotelReporting(TaskHotelReportingVO taskHotelReporting) throws Exception; |
| | | } |