修改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,15 @@
package com.ycwl.basic.mapper;
import com.ycwl.basic.model.pc.scenic.entity.ScenicAccountEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ScenicAccountMapper {
ScenicAccountEntity getByAccount(String account);
int add(ScenicAccountEntity scenicAccount);
ScenicAccountEntity getSuperAccountOfScenic(Long scenicId);
int update(ScenicAccountEntity scenicAccount);
int deleteById(Long id);
int updateStatus(Long id);
int deleteByScenicId(Long scenicId);
}