package com.travel.mapper; import com.travel.model.Travel; import com.travel.model.TravelComments; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; @Mapper public interface TravelCommentsMapper { void addComments(TravelComments comments); void delComments(TravelComments comments); List getComments(TravelComments comments); List> getCommentsUser(TravelComments travelComments); Travel getPtyhUserTravel(String uuid); Travel getGysUserTravel(String uuid); int getCommentsUserCount(TravelComments travelComments); }