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