package com.cku.dao;

import java.util.List;

import org.apache.ibatis.annotations.Param;

import com.cku.core.BaseDAOMapper;
import com.cku.model.CkuMatchReferee;
import com.cku.model.EventRelatedModel;

public interface CkuMatchRefereeMapper{
	/**
	 * 
	 * @Description：根据赛事裁判id获取裁判信息
	 * @author: zhuoHeng
	 * @version: 2016年3月16日 下午1:15:17
	 */
	public List<CkuMatchReferee> getRefereeMessage(@Param("showLocation")String showLocation);
}