lxp
2025-03-10 7a838ed69de1d9593fe6b37f9b5caafb5f8d0cbf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.performance.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.performance.pojo.Evaluate;
 
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.Map;
 
public interface EvaluateService extends IService<Evaluate> {
 
    IPage<Evaluate> getPage(Page page, Evaluate entity);
 
 
    void export(String month, String name, String departLims, HttpServletResponse response) throws IOException;
}