12345678910111213141516171819202122232425 |
- 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<TravelComments> getComments(TravelComments comments);
- List<Map<String, Object>> getCommentsUser(TravelComments travelComments);
- Travel getPtyhUserTravel(String uuid);
- Travel getGysUserTravel(String uuid);
- int getCommentsUserCount(TravelComments travelComments);
- }
|