zss
6 天以前 51ec98113c6d49d0f7eec4e3c030e55e337e97db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
}