package com.cku.dao; import java.util.List; import org.apache.ibatis.annotations.Param; import com.cku.model.CkuMatchCost; public interface CkuMatchCostMapper { /** * * @Description:获取赛事费用 * @author: zhuoHeng * @version: 2016年3月16日 下午3:46:37 */ public List getMatchCost(@Param("id")Integer id); }