weaver-hrm-salary/src/com/engine/salary/mapper/siaccount/SIAccountUtilMapper.java

38 lines
1.1 KiB
Java

package com.engine.salary.mapper.siaccount;
import com.engine.salary.entity.siaccount.dto.SIAccountUtilDTO;
import org.apache.ibatis.annotations.Param;
import java.util.Collection;
import java.util.List;
public interface SIAccountUtilMapper {
List<SIAccountUtilDTO> checkIfBusinessaccounting(Long id);
/**
* 删除社保前校验是否已经被使用
* @param id
* @return
*/
List<SIAccountUtilDTO> checkBeforeDeleteSocialscheme(@Param("ids") Collection<Long> id);
/**
* 删除公积金前校验是否已经被使用
* @param id
* @return
*/
List<SIAccountUtilDTO> checkBeforeDeleteAccumulationfund(@Param("ids") Collection<Long> id);
/**
* 删除其他福利方案前校验是否已经被使用
* @param id
* @return
*/
List<SIAccountUtilDTO> checkBeforeDeleteOtherscheme(@Param("ids") Collection<Long> id);
/**
* 删除其他福利方案前校验是否已经被使用
* @param id
* @return
*/
List<SIAccountUtilDTO> checkBeforeDeleteBill(@Param("ids") Collection<Long> id,@Param("welfareTypeId") Integer welfareTypeId);
}