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; /** * * @author liweidong */ public interface LdDemandEndMapper extends BaseMapper { List selectDemandEndList(@Param("demandNo") String demandNo); List getAllQuarter(); List selectByYearAndQuarter(@Param("year") String year, @Param("quarter")String quarter); List selectByIdList(@Param("idList")List idList); }