AuthService.java 168 Bytes
Newer Older
kangxiaoshan committed
1 2 3 4 5 6 7 8 9 10
package common.service;

import common.model.User;

import java.util.Map;

public interface AuthService {

    Map<String, Object> getAuthExtends(User loginAccount);
}