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