CostAccountShareMapper.java 662 B

12345678910111213141516171819202122232425
  1. package com.imed.costaccount.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.imed.costaccount.model.CostAccountShare;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.List;
  7. /**
  8. * 责任中心成本对照表
  9. *
  10. * @author KCYG
  11. * @date 2021-07-28 18:34:52
  12. */
  13. @Mapper
  14. public interface CostAccountShareMapper extends BaseMapper<CostAccountShare> {
  15. /**
  16. * 查询当前会计科目对应的
  17. * @param accountIdList 会计科目的Id集合
  18. * @return
  19. */
  20. List<Long> getResponsibilityIdsByAccountId(@Param("accountIdList") List<String> accountIdList);
  21. }