ViolationWarningAlarmMapper.java 549 B

123456789101112131415161718192021222324
  1. package com.chinaitop.depot.risk.mapper;
  2. import com.chinaitop.depot.risk.model.ViolationWarningAlarm;
  3. import java.util.List;
  4. import java.util.Map;
  5. /**
  6. * 违规预警mapper
  7. * @author aihua
  8. */
  9. public interface ViolationWarningAlarmMapper {
  10. void insert(ViolationWarningAlarm violationWarningAlarm);
  11. List<ViolationWarningAlarm> selectListPage(Map<String, Object> queryMap);
  12. ViolationWarningAlarm selectById(Integer id);
  13. void updateById(ViolationWarningAlarm riskManagement);
  14. Map<String, Object> getWgyjGjjDate(Integer id);
  15. }