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