package com.cabletech.business.workflow.accident.service; import com.cabletech.baseinfo.business.entity.UserInfo; import com.cabletech.business.workflow.accident.model.MmAccident; import com.cabletech.common.util.Page; /** * 待处理隐患业务处理接口 * * @author 杨隽 2012-08-27 创建 * */ public interface WaitProcessMmAccidentService { /** * 获取待处理隐患列表 * * @param accident * MmAccident * @param userInfo * UserInfo * @param page * Page */ @SuppressWarnings("rawtypes") public void getWaitProcessAccidentPage(MmAccident accident, UserInfo userInfo, Page page); }