You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
375 B
19 lines
375 B
package com.zilber.boot.intelligencesite.service;
|
|
|
|
import com.zilber.boot.intelligencesite.entity.IWarn;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* <p>
|
|
* 预警表 服务类
|
|
* </p>
|
|
*
|
|
* @author lsc
|
|
* @since 2025-05-06
|
|
*/
|
|
public interface IIWarnService extends IService<IWarn> {
|
|
|
|
List<IWarn> queryList(IWarn iWarn);
|
|
}
|
|
|