EtlGroundDataMapper.java 751 B

123456789101112131415161718192021222324252627
  1. /**
  2. * Copyright 2019 DH
  3. * All right reserved.
  4. * 项目名称: 大恒泰山系统
  5. * 创建日期:2022/8/24
  6. */
  7. package org.springblade.etl.mapper;
  8. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  9. import org.apache.ibatis.annotations.Param;
  10. import org.springblade.etl.entity.EtlGroundDataEntity;
  11. import java.util.List;
  12. /***
  13. * Date:2022/8/24
  14. * Title:文件所属模块(必须填写)
  15. * Description:对本文件的详细描述,原则上不能少于30字
  16. * @author dylan
  17. * @version 1.0
  18. * Remark:认为有必要的其他信息
  19. */
  20. public interface EtlGroundDataMapper extends BaseMapper<EtlGroundDataEntity> {
  21. List<EtlGroundDataEntity> selectLastList(@Param("etlGroundDataEntity") EtlGroundDataEntity etlGroundDataEntity);
  22. }