1
zhang
2026-01-22 6876084ffc4a01c1eca6a609dec8c176efc59aae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.core.properties;
 
import java.util.concurrent.atomic.AtomicBoolean;
 
/**
 * Created by vincent on 2020-06-03
 */
public class SystemProperties {
 
    // 系统运行状态
    public static final AtomicBoolean WCS_RUNNING_STATUS = new AtomicBoolean(Boolean.TRUE);
 
 
}