You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
717 B
26 lines
717 B
|
6 months ago
|
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<LdDemandEnd> {
|
||
|
|
|
||
|
|
|
||
|
|
List<LdDemandEnd> selectDemandEndList(@Param("demandNo") String demandNo);
|
||
|
|
|
||
|
|
List<QuarterVO> getAllQuarter();
|
||
|
|
|
||
|
|
List<String> selectByYearAndQuarter(@Param("year") String year, @Param("quarter")String quarter);
|
||
|
|
|
||
|
|
List<LdDemandEnd> selectByIdList(@Param("idList")List<Long> idList);
|
||
|
|
}
|