19 lines
424 B
Java
19 lines
424 B
Java
package com.engine.salary.mapper;
|
|
|
|
import com.engine.salary.entity.siexport.po.AccountExportPO;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @Author weaver_cl
|
|
* @Description: TODO
|
|
* @Date 2022/4/18
|
|
* @Version V1.0
|
|
**/
|
|
public interface InsuranceExportMapper {
|
|
|
|
List<AccountExportPO> exportAccount(@Param("paymentStatus") Integer paymentStatus, @Param("billMonth") String billMonth);
|
|
|
|
}
|