package com.nis.web.dao.dashboard; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Param; import com.nis.domain.restful.dashboard.TrafficUaStatistic; import com.nis.web.dao.MyBatisDao; @MyBatisDao public interface TrafficUaStatisticDao { List systemList(); List getBrowserBySystem(@Param("osType") Integer osType); List browserList(); List getSystemBybrowser(@Param("bsType") Integer bsType); }