IEtlWarningService.java 611 B

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