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

38 lines
1.1 KiB
Java
Raw Normal View History

2022-07-20 15:40:51 +08:00
package com.engine.salary.mapper.siaccount;
import com.engine.salary.entity.siaccount.dto.SIAccountUtilDTO;
2022-07-26 16:14:24 +08:00
import org.apache.ibatis.annotations.Param;
2022-07-20 15:40:51 +08:00
2022-07-26 16:14:24 +08:00
import java.util.Collection;
2022-07-20 15:40:51 +08:00
import java.util.List;
public interface SIAccountUtilMapper {
List<SIAccountUtilDTO> checkIfBusinessaccounting(Long id);
2022-07-26 16:14:24 +08:00
2022-07-28 17:18:51 +08:00
/**
* 删除社保前校验是否已经被使用
* @param id
* @return
*/
2022-07-26 16:14:24 +08:00
List<SIAccountUtilDTO> checkBeforeDeleteSocialscheme(@Param("ids") Collection<Long> id);
2022-07-28 17:18:51 +08:00
/**
* 删除公积金前校验是否已经被使用
* @param id
* @return
*/
List<SIAccountUtilDTO> checkBeforeDeleteAccumulationfund(@Param("ids") Collection<Long> id);
/**
* 删除其他福利方案前校验是否已经被使用
* @param id
* @return
*/
List<SIAccountUtilDTO> checkBeforeDeleteOtherscheme(@Param("ids") Collection<Long> id);
2022-07-28 17:56:42 +08:00
/**
* 删除其他福利方案前校验是否已经被使用
* @param id
* @return
*/
List<SIAccountUtilDTO> checkBeforeDeleteBill(@Param("ids") Collection<Long> id,@Param("welfareTypeId") Integer welfareTypeId);
2022-07-20 15:40:51 +08:00
}