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.

29 lines
824 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;
6 months ago
import java.util.Map;
6 months ago
/**
*
* @author liweidong
*/
public interface LdDemandEndMapper extends BaseMapper<LdDemandEnd> {
List<LdDemandEnd> selectDemandEndList(@Param("demandNo") String demandNo);
List<QuarterVO> getAllQuarter();
6 months ago
List<LdDemandEnd>selectByYearAndQuarter(@Param("year") String year, @Param("quarter")String quarter);
List<LdDemandEnd> selectByIdList(@Param("idList")List<Long> idList,
@Param("departmentId")String departmentId);
6 months ago
}