| | |
| | | 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.TaskLabelReportingEventDTO; |
| | | import org.springblade.modules.task.entity.TaskLabelReportingEventEntity; |
| | |
| | | * @author BladeX |
| | | * @since 2023-11-06 |
| | | */ |
| | | public interface ITaskLabelReportingEventService extends BaseService<TaskLabelReportingEventEntity> { |
| | | public interface ITaskLabelReportingEventService extends IService<TaskLabelReportingEventEntity> { |
| | | |
| | | /** |
| | | * 自定义分页 |
| | |
| | | |
| | | Boolean saveReportingEven(TaskLabelReportingEventDTO taskLabelReportingEvent); |
| | | |
| | | Boolean updateLabelReporting(TaskLabelReportingEventEntity taskLabelReportingEvent) throws Exception; |
| | | Boolean updateLabelReporting(TaskLabelReportingEventVO taskLabelReportingEvent) throws Exception; |
| | | } |