2022-04-18 20:24:43 +08:00
|
|
|
package com.engine.salary.mapper;
|
|
|
|
|
|
2022-09-27 10:19:09 +08:00
|
|
|
import com.engine.salary.entity.siexport.param.InsuranceExportParam;
|
2022-04-18 20:24:43 +08:00
|
|
|
import com.engine.salary.entity.siexport.po.AccountExportPO;
|
2022-09-29 11:13:49 +08:00
|
|
|
import com.engine.salary.entity.siexport.po.ExcelAccountExportPO;
|
2022-04-18 20:24:43 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Author weaver_cl
|
2022-07-13 11:45:16 +08:00
|
|
|
*
|
2022-04-18 20:24:43 +08:00
|
|
|
* @Date 2022/4/18
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
**/
|
|
|
|
|
public interface InsuranceExportMapper {
|
|
|
|
|
|
2022-09-29 11:13:49 +08:00
|
|
|
List<ExcelAccountExportPO> exportExcelAccount(@Param("paymentStatus") Integer paymentStatus, @Param("billMonth") String billMonth, @Param("paymentOrganization") String paymentOrganization);
|
2022-09-29 15:11:13 +08:00
|
|
|
|
2022-09-27 10:19:09 +08:00
|
|
|
List<AccountExportPO> exportAccount(@Param("paymentStatus") Integer paymentStatus, @Param("param") InsuranceExportParam param);
|
2022-04-18 20:24:43 +08:00
|
|
|
|
|
|
|
|
}
|