package com.cab.dao; import java.util.List; import com.cab.model.TestInterface; import com.cku.core.BaseDAOMapper; public interface TestInterfaceMapper extends BaseDAOMapper{ public List getAll(); public List getByPId(int id); }