lxp
2025-03-18 059b188fd49c5127b75a38408d12e26d2363fbab
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
26
27
28
29
30
31
32
package com.ruoyi.personnel.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.personnel.dto.PersonSupervisePlanDto;
import com.ruoyi.personnel.pojo.PersonSupervisePlan;
import org.springframework.web.multipart.MultipartFile;
 
import javax.servlet.http.HttpServletResponse;
 
/**
 * <p>
 * 监督计划 - 父 服务类
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2024-10-09 04:14:45
 */
public interface PersonSupervisePlanService extends IService<PersonSupervisePlan> {
 
    IPage<PersonSupervisePlanDto> yearPlanDtoIPage(Page page, String organizationPerson,Integer departId);
 
    void yearPlanDetailImport(MultipartFile file,String suffix);
 
    /**
     * 导出人员监督计划
     * @param id
     * @param response
     */
    void exportSuperVisePlan(Integer id, HttpServletResponse response);
}