package com.nov.KgLowDurable.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.nov.KgLowDurable.pojo.entity.LdDemandEnd; import com.nov.KgLowDurable.pojo.entity.LdPurchaseEnd; import com.nov.KgLowDurable.pojo.vo.QuarterVO; import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; /** * * @author liweidong */ public interface LdDemandEndMapper extends BaseMapper { List selectDemandEndList(@Param("demandNo") String demandNo); List getAllQuarter(); ListselectByYearAndQuarter(@Param("year") String year, @Param("quarter")String quarter); List selectByIdList(@Param("idList")List idList, @Param("departmentId")String departmentId); }