package com.cabletech.business.desktop.service;
import java.util.Map;
import com.cabletech.baseinfo.business.entity.UserInfo;
/**
* 巡检率统计
* @author Administrator
*
*/
public interface PatrolPlanSeivice {
/**
* 获取巡检率
* @param loginUser 用户
* @param timetype 时间类型
* @return
*/
Map<String, Object> getPatrolRate(UserInfo loginUser,String timetype);
}