chengf
2025-07-18 271f0165b4701b63a756afca9d440df8a829ce2f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.java110.dto.system;
 
/**
 * 系统日志
 */
public class SystemLogDto {
 
    private static String logSwatch = "OFF";
    private static String LOG_SWATCH_ON = "ON";
 
    public static boolean getLogSwatch() {
        return logSwatch.equals(LOG_SWATCH_ON) ? true : false;
    }
 
    public static void setLogSwatch(String logSwatch) {
        SystemLogDto.logSwatch = logSwatch;
    }
}