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

15 lines
406 B
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
List<SIAccountUtilDTO> checkBeforeDeleteSocialscheme(@Param("ids") Collection<Long> id);
2022-07-20 15:40:51 +08:00
}