package com.template.services; import com.template.model.pojo.SmartWarning; import com.template.model.pojo.SmartWarning; import com.baomidou.mybatisplus.extension.service.IService; import com.template.model.result.PageUtils; /** *

* 服务类 *

* * @author ceshi * @since 2023-12-04 */ public interface SmartWarningService extends IService { int insertSmartWarning(SmartWarning rns); int updateSmartWarning(SmartWarning rns); PageUtils queryPageSmartWarnings(int currentPage, int pageCount, String name); int deleteSmartWarningById(int id); SmartWarning getSmartById(int id); }