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.
28 lines
824 B
28 lines
824 B
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<LdDemandEnd> { |
|
|
|
|
|
List<LdDemandEnd> selectDemandEndList(@Param("demandNo") String demandNo); |
|
|
|
List<QuarterVO> getAllQuarter(); |
|
|
|
List<LdDemandEnd>selectByYearAndQuarter(@Param("year") String year, @Param("quarter")String quarter); |
|
|
|
List<LdDemandEnd> selectByIdList(@Param("idList")List<Long> idList, |
|
@Param("departmentId")String departmentId); |
|
|
|
}
|
|
|