TASK:模块化;
This commit is contained in:
@@ -14,9 +14,11 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import javax.servlet.http.HttpSession;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* 服务类
|
||||
@@ -194,9 +196,9 @@ public interface AccountService extends IService<Account> {
|
||||
|
||||
void temporaryUpgrade();
|
||||
|
||||
AccountLoginVO enterpriseLogin(AccountLoginDTO accountDTO);
|
||||
AccountPreLoginVO enterpriseLogin(AccountLoginDTO accountDTO);
|
||||
|
||||
AccountLoginVO schoolLogin(AccountLoginDTO accountDTO);
|
||||
AccountPreLoginVO schoolLogin(AccountLoginDTO accountDTO);
|
||||
|
||||
Boolean addSubAccount(AddSubAccountDTO addSubAccountDTO);
|
||||
|
||||
@@ -225,4 +227,10 @@ public interface AccountService extends IService<Account> {
|
||||
void updateUserRoleAndCredits(Long accountId, String type);
|
||||
|
||||
Boolean updateUserInfo(UpdateUserInfoDTO updateUserInfoDTO);
|
||||
|
||||
void subAccountImportExcelDownload(HttpServletResponse response);
|
||||
|
||||
Boolean subAccountImport(MultipartFile file);
|
||||
|
||||
Set<String> organizationNameSearch(String type, String name);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user