| 123456789101112131415161718192021222324 |
- package com.chinaitop.depot.risk.mapper;
- import com.chinaitop.depot.risk.model.ViolationWarningAlarm;
- import java.util.List;
- import java.util.Map;
- /**
- * 违规预警mapper
- * @author aihua
- */
- public interface ViolationWarningAlarmMapper {
- void insert(ViolationWarningAlarm violationWarningAlarm);
- List<ViolationWarningAlarm> selectListPage(Map<String, Object> queryMap);
- ViolationWarningAlarm selectById(Integer id);
- void updateById(ViolationWarningAlarm riskManagement);
- Map<String, Object> getWgyjGjjDate(Integer id);
- }
|