WarningRuleService.java 361 B

1234567891011121314151617181920
  1. package com.zoniot.ccrc.service;
  2. import com.zoniot.ccrc.entity.WarningRule;
  3. import java.util.List;
  4. public interface WarningRuleService{
  5. int insertSelective(WarningRule record);
  6. int updateByPrimaryKeySelective(WarningRule record);
  7. List<WarningRule> getRuleList();
  8. int addRule(Integer warningType);
  9. void delWaringRule(Integer id);
  10. }