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
package engbs;
 
import shiping.Dell_shiping;
 
/**ÐÂÔöÒ»¸öÊÓÆµ¶ÔÏó
 * BSTOCS1,ADDSP,fencename,shebeiid,tongdaoid,posx,posy,posz,floor,name,END
 * fencename ÊÓÆµÇøÓòÃû³Æ
 * shebeiid É豸ID
 * tongdaoid Í¨µÀID
 * posx ÊÓÆµ°²×°Î»ÖÃX
 * posy ÊÓÆµ°²×°Î»ÖÃy
 * posz ÊÓÆµ°²×°Î»ÖÃz
 * floor ÊÓÆµ°²×°Î»ÖÃËùÔÚ²ã
 * name ÉãÏñÍ·Ãû³Æ
 * END ½áÊø±êʶ·û
 **/
public class Bs_dell_shiping {
 
    /**ÐÂÔöÒ»¸öÊÓÆµ*/
    public static void ADDASP(String[] a) {
        String fencename=a[2];
        String shebeiid=a[3];
        String tongdaoid=a[4];
        String posx=a[5];
        String posy=a[6];
        String posz=a[7];
        String floor=a[8];
        String name=a[9];
        Dell_shiping.add2(fencename, shebeiid, tongdaoid, posx, posy, posz, floor, name);
 
    }
 
    /**ÐÞ¸ÄÒ»¸öÊÓÆµ¶ÔÏó
     * BSTOCS1,ALTERSP,fencename,shebeiid,tongdaoid,posx,posy,posz,floor,name,END
     * fencename ÊÓÆµÇøÓòÃû³Æ
     * shebeiid É豸ID
     * tongdaoid Í¨µÀID
     * posx ÊÓÆµ°²×°Î»ÖÃX
     * posy ÊÓÆµ°²×°Î»ÖÃy
     * posz ÊÓÆµ°²×°Î»ÖÃz
     * floor ÊÓÆµ°²×°Î»ÖÃËùÔÚ²ã
     * name ÉãÏñÍ·Ãû³Æ
     * END ½áÊø±êʶ·û
     **/
    public static void ALTERSP(String[] a) {
        String fencename=a[2];
        String shebeiid=a[3];
        String tongdaoid=a[4];
        String posx=a[5];
        String posy=a[6];
        String posz=a[7];
        String floor=a[8];
        String name=a[9];
        Dell_shiping.alert2(fencename, shebeiid, tongdaoid, posx, posy, posz, floor, name);
 
    }
 
    /**ɾ³ýÒ»¸öÊÓÆµ¶ÔÏó
     * BSTOCS1,DELETESP,shebeiid,END
     * shebeiid É豸ID     
     * * END ½áÊø±êʶ·û
     **/
    public static void DELETESP(String[] a) {
        String shebeiid=a[2];
        Dell_shiping.delete(shebeiid);
 
    }
 
    /**ɾ³ýËùÓÐÊÓÆµ¶ÔÏó
     * BSTOCS1,DELETEALLSP,END
     * END ½áÊø±êʶ·û
     **/
    public static void DELETEALLSP() {    
        Dell_shiping.deleteall2();
 
    }
 
}