123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.vcarecity.publish.mapper;
-
- import com.vcarecity.publish.entity.UnitAgencyMergeEntity;
- import com.vcarecity.publish.entity.UnitEntity;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
-
- import java.util.List;
-
- /**
- * @author VcKerry on 12/17/19
- */
-
- @Mapper
- public interface UnitMapper {
-
-
- /**
- * find update
- *
- * @param fromDate
- * @param toDate
- * @return
- */
- List<UnitEntity> findUpdateList(@Param("fromDate") String fromDate, @Param("toDate") String toDate);
-
-
- /**
- * find update
- *
- * @param fromDate
- * @param toDate
- * @return
- */
- List<UnitAgencyMergeEntity> findUpdateUaList(@Param("fromDate") String fromDate, @Param("toDate") String toDate);
-
-
- }
|