2022-04-18 20:24:43 +08:00
|
|
|
|
package com.engine.salary.service;
|
|
|
|
|
|
|
|
|
|
|
|
import com.engine.salary.entity.siexport.param.InsuranceExportParam;
|
|
|
|
|
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @Author weaver_cl
|
2022-07-08 11:30:10 +08:00
|
|
|
|
* @Description: 该条数据不在个税扣缴义务人人员范围内,不可导入
|
2022-04-18 20:24:43 +08:00
|
|
|
|
* @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);
|
|
|
|
|
|
}
|