package com.yuanchu.mom.service;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.yuanchu.mom.pojo.ManageMeeting;
|
import com.yuanchu.mom.pojo.ManageReviewReport;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
/**
|
* <p>
|
* 管理评审报告 服务类
|
* </p>
|
*
|
* @author
|
* @since 2024-11-12 04:44:39
|
*/
|
public interface ManageReviewReportService extends IService<ManageReviewReport> {
|
|
|
IPage<ManageReviewReport> page(Page page, String startTime, String endTime, String place);
|
|
void exportReviewReport(Integer id, HttpServletResponse response);
|
}
|