package com.idea.oa.apply.mapper; import org.apache.ibatis.annotations.MapKey; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Component; import java.util.List; import java.util.Map; @Component public interface ApplyExtendMapper { @MapKey("id") List findOffWorkListByInfo(@Param("name") String name, @Param("startTime") String startTime, @Param("endTime") String endTime); @MapKey("id") List findApplyPaymentListByInfo(@Param("name") String name, @Param("startTime") String startTime, @Param("endTime") String endTime); @MapKey("id") List findApplyUseMoneyListByInfo(@Param("name") String name, @Param("startTime") String startTime, @Param("endTime") String endTime); }