AccountMapper.java 222 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 package vion.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import vion.model.Account; @Mapper public interface AccountMapper extends BaseMapper<Account> { }