1234567891011121314151617181920 |
- package com.zoniot.ccrc.service;
- import com.zoniot.ccrc.entity.WarningRule;
- import java.util.List;
- public interface WarningRuleService{
- int insertSelective(WarningRule record);
- int updateByPrimaryKeySelective(WarningRule record);
- List<WarningRule> getRuleList();
- int addRule(Integer warningType);
- void delWaringRule(Integer id);
- }
|