package com.cku.dao; import org.apache.ibatis.annotations.Param; import com.cku.model.Dog; public interface BreedCertifiedMapper { public Dog getDogInfo(@Param("memberNum") String memberNum,@Param("pedigreeCertified") String pedigreeCertified,@Param("dogGender") String dogGender); }