jialh
1 天以前 dd6687b118561100e1677e88a9c2f5842a54c531
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;
    }
}