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 exportAccount(@Param("paymentStatus") Integer paymentStatus, @Param("billMonth") String billMonth); }