package com.mes.md.service;
|
|
import com.github.yulichang.base.MPJBaseService;
|
import com.mes.md.entity.Account;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* <p>
|
* 账户表 服务类
|
* </p>
|
*
|
* @author wu
|
* @since 2024-08-28
|
*/
|
public interface AccountService extends MPJBaseService<Account> {
|
/**
|
* 输入账户密码 返回权限
|
* @return
|
*/
|
Map<String, Object> selectAccount(String account, String password);
|
|
|
List<Map<String, Object>> findAccounts();
|
|
int addAccount(Account account);
|
|
int updateAccount(Account account);
|
|
int deleteAccount(Account account);
|
}
|