12345678910111213141516171819202122 |
- package com.mapper;
- import com.pojo.dto.AccountVO;
- import com.pojo.entity.AccountEntity;
- import com.pojo.entity.AccountRealEntity;
- import org.apache.ibatis.annotations.Mapper;
- import org.springframework.stereotype.Component;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- public interface AccountMapper {
- List<AccountEntity> findAll(Integer id);
- void updateOne(AccountEntity accountEntity);
- void insertOne(AccountEntity accountEntity);
- AccountRealEntity findByResultMap();
-
- AccountVO findVO(Integer id);
- }
|