29 lines
604 B
Java
29 lines
604 B
Java
package com.engine.salary.service;
|
|
|
|
import com.engine.salary.entity.siexport.param.InsuranceExportParam;
|
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
|
|
/**
|
|
* @Author weaver_cl
|
|
* @Description: TODO
|
|
* @Date 2022/4/18
|
|
* @Version V1.0
|
|
**/
|
|
public interface SIExportService {
|
|
|
|
/**
|
|
* 总览导出
|
|
* @param param
|
|
* @return
|
|
*/
|
|
XSSFWorkbook exportOverView(InsuranceExportParam param);
|
|
|
|
/**
|
|
* 补缴核算导出
|
|
* @param paymentStatus
|
|
* @param param
|
|
* @return
|
|
*/
|
|
XSSFWorkbook exportAccount(Integer paymentStatus, InsuranceExportParam param);
|
|
}
|