You've already forked FrameTour-BE
修改bug
This commit is contained in:
@ -3,7 +3,9 @@ package com.ycwl.basic.mapper.pc;
|
||||
import com.ycwl.basic.model.pc.member.entity.MemberEntity;
|
||||
import com.ycwl.basic.model.pc.member.req.MemberReqQuery;
|
||||
import com.ycwl.basic.model.pc.member.resp.MemberRespVO;
|
||||
import com.ycwl.basic.utils.ApiResponse;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -19,4 +21,28 @@ public interface MemberMapper {
|
||||
int add(MemberEntity member);
|
||||
int deleteById(Long id);
|
||||
int update(MemberEntity member);
|
||||
|
||||
/**
|
||||
* 修改景区服务通知状态
|
||||
* @param scenicId 景区id
|
||||
* @param memberId 用户id
|
||||
* @return
|
||||
*/
|
||||
int updateScenicServiceNoticeStatus(@Param("scenicId") Long scenicId,@Param("memberId") Long memberId);
|
||||
|
||||
/**
|
||||
* 查询用户当前景区服务通知状态
|
||||
* @param scenicId 景区id
|
||||
* @param memberId 用户id
|
||||
* @return
|
||||
*/
|
||||
Integer getScenicServiceNoticeStatus(@Param("scenicId") Long scenicId,@Param("memberId") Long memberId);
|
||||
|
||||
/**
|
||||
* 添加景区服务通知状态
|
||||
* @param scenicId
|
||||
* @param memberId
|
||||
* @return
|
||||
*/
|
||||
int addScenicServiceNoticeStatus(@Param("scenicId") Long scenicId,@Param("memberId") Long memberId);
|
||||
}
|
||||
|
Reference in New Issue
Block a user