You've already forked FrameTour-BE
后台部分修改
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
package com.ycwl.basic.mapper.pc;
|
||||
|
||||
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);
|
||||
}
|
Reference in New Issue
Block a user