zsh_root
2024-01-02 7b595546af704983dbafcd0d385c8768ddacefc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package engbs;
import BaoWen.Dell_GNGGA;
import PbuliClass.ShowMessage;
public class Bs_dell_urtmoade1 {
    /**²ÉÓõ¥µãÊý¾Ý*/
    //BSTOCS1,urtmode,1,end
    public static void urtmode(String[] a) {
        String type=a[2];
        if(type.equals("0")) {
            Dell_GNGGA.setUrtmode1(false);
        }else if(type.equals("1")) {
            Dell_GNGGA.setUrtmode1(true);
        }else if(type.equals("2")) {
            Dell_GNGGA.setUrtmode1(true);
        }
        ShowMessage.zidingyi("ÊÕµ½¿ØÖÆÖ¸Áîurtmode£º"+type);
    }
}