elastic-data-test

UnitMapper.java 771B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.vcarecity.publish.mapper;
  2. import com.vcarecity.publish.entity.UnitAgencyMergeEntity;
  3. import com.vcarecity.publish.entity.UnitEntity;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.List;
  7. /**
  8. * @author VcKerry on 12/17/19
  9. */
  10. @Mapper
  11. public interface UnitMapper {
  12. /**
  13. * find update
  14. *
  15. * @param fromDate
  16. * @param toDate
  17. * @return
  18. */
  19. List<UnitEntity> findUpdateList(@Param("fromDate") String fromDate, @Param("toDate") String toDate);
  20. /**
  21. * find update
  22. *
  23. * @param fromDate
  24. * @param toDate
  25. * @return
  26. */
  27. List<UnitAgencyMergeEntity> findUpdateUaList(@Param("fromDate") String fromDate, @Param("toDate") String toDate);
  28. }