package com.engine.salary.mapper.siaccount; import com.engine.salary.entity.siaccount.po.InsuranceAccountInspectPO; import org.apache.ibatis.annotations.Param; import java.util.Collection; import java.util.List; /** * @Author weaver_cl * @Description: TODO * @Date 2022/4/14 * @Version V1.0 **/ public interface InsuranceAccountInspectMapper { /** * 批量删除 * @param pos */ void batchDelInspectDetails(@Param("pos") Collection pos); /** * 批量保存 * @param pos */ void batchSaveInspectDetails(@Param("pos") Collection pos); /** * * @param inspectStatus * @param billMonth * @return */ List getByInspectStatusAndBillMonth(@Param("inspectStatus")Integer inspectStatus,@Param("billMonth")String billMonth); List getByInspectStatusAndIds(@Param("inspectStatus")Integer inspectStatus,@Param("ids")Collection ids); }