12345678910111213141516171819202122232425 |
- package com.imed.costaccount.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.imed.costaccount.model.CostAccountShare;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * 责任中心成本对照表
- *
- * @author KCYG
- * @date 2021-07-28 18:34:52
- */
- @Mapper
- public interface CostAccountShareMapper extends BaseMapper<CostAccountShare> {
- /**
- * 查询当前会计科目对应的
- * @param accountIdList 会计科目的Id集合
- * @return
- */
- List<Long> getResponsibilityIdsByAccountId(@Param("accountIdList") List<String> accountIdList);
- }
|