EtlWarningInfoMapper.java 571 B

12345678910111213141516171819202122
  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.springblade.etl.entity.EtlWarningInfoEntity;
  10. /***
  11. * Date:2022/8/24
  12. * Title:文件所属模块(必须填写)
  13. * Description:对本文件的详细描述,原则上不能少于30字
  14. * @author dylan
  15. * @version 1.0
  16. * Remark:认为有必要的其他信息
  17. */
  18. public interface EtlWarningInfoMapper extends BaseMapper<EtlWarningInfoEntity> {
  19. }