huang
2025-05-20 e5b578d2c586ca9f664e31d3759952752255fdd3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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);
}