修改mapper文件路径

添加“MessageRecordMapper”
This commit is contained in:
longbinbin
2024-12-13 11:35:42 +08:00
parent 0145110b28
commit b544639b11
62 changed files with 94 additions and 89 deletions

View File

@@ -0,0 +1,29 @@
package com.ycwl.basic.mapper;
import com.ycwl.basic.model.pc.face.entity.FaceEntity;
import com.ycwl.basic.model.pc.face.req.FaceReqQuery;
import com.ycwl.basic.model.pc.face.resp.FaceRespVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* @Author:longbinbin
* @Date:2024/11/29 15:09
* 用户人脸
*/
@Mapper
public interface FaceMapper {
List<FaceRespVO> list(FaceReqQuery faceReqQuery);
List<FaceRespVO> listByScenicIdAndNotFinished(Long scenicId);
FaceRespVO getById(Long id);
int add(FaceEntity face);
int deleteById(Long id);
int deleteByIds(@Param("list") List<Long> ids);
int update(FaceEntity face);
FaceRespVO getByMemberId(Long userId);
int finishedJourney(Long faceId);
}