23 lines
394 B
Java
Raw Normal View History

2024-03-27 11:12:20 +08:00
package com.sky.context;
2024-03-29 16:21:15 +08:00
import lombok.Data;
2024-03-27 11:12:20 +08:00
public class BaseContext {
public static ThreadLocal<Long> threadLocal = new ThreadLocal<>();
public static void setCurrentId(Long id) {
threadLocal.set(id);
}
public static Long getCurrentId() {
return threadLocal.get();
}
public static void removeCurrentId() {
threadLocal.remove();
}
}
2024-03-29 16:21:15 +08:00