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 getRuleList(); int addRule(Integer warningType); void delWaringRule(Integer id); }