使用oracle做的数据上传系统后台
kongdeqiang
2026-03-23 0d3f0dc4931e2a8cd379c5b7e9a9c70276ebc1cf
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.example.service;
 
import com.example.dto.LoginRequest;
import com.example.dto.LoginResponse;
 
public interface AuthService {
 
    LoginResponse login(LoginRequest request);
 
    String getCurrentUserDeptCode();
 
    Long getCurrentUserId();
}