You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
671 B
Java
35 lines
671 B
Java
/*
|
|
* 文 件 名: ThreadCache
|
|
* 版 权:
|
|
* 描 述: <描述>
|
|
* 修 改 人: RedName
|
|
* 修改时间: 2023/9/4
|
|
* 跟踪单号: <跟踪单号>
|
|
* 修改单号: <修改单号>
|
|
* 修改内容: <修改内容>
|
|
*/
|
|
package com.supervision.config;
|
|
|
|
import com.supervision.police.dto.AuditLogDTO;
|
|
|
|
/**
|
|
* <功能详细描述>
|
|
*
|
|
* @author ljt
|
|
* @version [版本号, 2023/9/4]
|
|
* @see [相关类/方法]
|
|
* @since [产品/模块版本]
|
|
*/
|
|
public class ThreadCache {
|
|
|
|
/**
|
|
* 用户ID
|
|
*/
|
|
public static final ThreadLocal<String> USER = new ThreadLocal<>();
|
|
|
|
|
|
public static final ThreadLocal<AuditLogDTO> AUDIT_LOG = new ThreadLocal<>();
|
|
|
|
|
|
}
|