You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RuoYi-Vue/book-system/src/main/java/com/ruoyi/booksystem/service/IAccountService.java

62 lines
1.2 KiB

package com.ruoyi.booksystem.service;
import java.util.List;
import com.ruoyi.booksystem.domain.Account;
/**
* Service
*
* @author ruoyi
* @date 2023-12-18
*/
public interface IAccountService
{
/**
*
*
* @param id
* @return
*/
public Account selectAccountById(Long id);
/**
*
*
* @param account
* @return
*/
public List<Account> selectAccountList(Account account);
/**
*
*
* @param account
* @return
*/
public int insertAccount(Account account);
/**
*
*
* @param account
* @return
*/
public int updateAccount(Account account);
/**
*
*
* @param ids
* @return
*/
public int deleteAccountByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteAccountById(Long id);
}