zsh_root
2024-01-02 7b595546af704983dbafcd0d385c8768ddacefc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package BaoWen;
import PbuliClass.Systems;
 
/**¾²Ì¬±äÁ¿*/
public class Stac {
    
    
 
    /**¿ªÆô¹ì¼£±£´æ*/
    static boolean saveguiji=Systems.sys().getGuiji_sava().equals("1");
 
 
    /**¿ªÆôÆøÌå¼àÌý*/
    static boolean gasopen=Systems.sys().getGas_open().equals("1");
 
 
    /**ÆøÑ¹Ä£Ê½*/
    static boolean qiya=Systems.sys().getAnchorgas().equals("1");
 
    /**ºǫ́ģʽ²»µ¯´°*/
    static boolean houtai=Systems.sys().getHoutai().equals("1");
 
    /**¿ªÆô¾²Ö¹Êä³ö¹Ì¶¨×ø±êģʽ*/
    static boolean jingzhi=Systems.sys().getQuiet().equals("1");
    
    /**±»ËÑË÷µÄÉ豸ID*/
    static String serchtagid="0";
    
    /**¿ªÆôËÑË÷ģʽ*/
    static boolean serchperson=false;
 
 
 
    /**¿ªÆô¹ì¼£±£´æ¹¦ÄÜ*/
    public static boolean isSaveguiji() {
        return saveguiji;
    }
 
 
    /**¿ªÆôÆøÌå¼àÌý*/
    public static boolean isGasopen() {
        return gasopen;
    }
 
    /**¿ªÆôÆøÑ¹Ä£Ê½*/
    public static boolean isQiya() {
        return qiya;
    }
 
    
    /**¿ªÆôºǫ́ģʽ*/
    public static boolean isHoutai() {
        return houtai;
    }
 
    /**¿ªÆô¾²Ö¹Êä³ö¹Ì¶¨×ø±êģʽ*/
    public static boolean isJingzhi() {
        return jingzhi;
    }
 
    public static String getSerchtagid() {
        return serchtagid;
    }
 
    public static void setSerchtagid(String serchtagid) {
        Stac.serchtagid = serchtagid;
    }
 
    public static boolean isSerchperson() {
        return serchperson;
    }
 
    public static void setSerchperson(boolean serchperson) {
        Stac.serchperson = serchperson;
    }
 
    
    
}