| 123456789101112131415161718192021222324 |
- /**
- * Copyright 2019 DH
- * All right reserved.
- * 项目名称: 运维系统
- * 创建日期:2022/8/22
- */
- package org.springblade.etl.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.springblade.etl.entity.EtlTaskInfoEntity;
- /***
- * Date:2022/8/22
- * Title:ETL模块-ETL任务执行信息映射
- * Description:对本文件的详细描述,原则上不能少于30字
- * @author dylan
- * @version 1.0
- * Remark:认为有必要的其他信息
- */
- public interface EtlTaskInfoMapper extends BaseMapper<EtlTaskInfoEntity> {
- }
|