123456789101112131415161718 |
- 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<Map> findOffWorkListByInfo(@Param("name") String name, @Param("startTime") String startTime, @Param("endTime") String endTime);
- @MapKey("id")
- List<Map> findApplyPaymentListByInfo(@Param("name") String name, @Param("startTime") String startTime, @Param("endTime") String endTime);
- @MapKey("id")
- List<Map> findApplyUseMoneyListByInfo(@Param("name") String name, @Param("startTime") String startTime, @Param("endTime") String endTime);
- }
|