#
vincentlu
2025-04-18 a957c1c914f6890c8a6a8c477495809b065fcbcf
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
package com.zy.acs.manager.core.constant;
 
import java.util.ArrayList;
 
public class StaGroupConstant {
 
    public static final ArrayList<String> FAR_LEFT_STA_ROW_LIST  = new ArrayList<String>(){{
        add("9-1");
        add("9-2");
        add("9-3");
        add("10-1");
        add("10-2");
        add("10-3");
    }};
 
    public static final ArrayList<String> LEFT_STA_ROW_LIST  = new ArrayList<String>(){{
        add("7-1");
        add("7-2");
        add("7-3");
        add("8-1");
        add("8-2");
        add("8-3");
    }};
 
    public static final ArrayList<String> MIDDLE_STA_ROW_LIST  = new ArrayList<String>(){{
        add("5-1");
        add("5-2");
        add("5-3");
        add("6-1");
        add("6-2");
        add("6-3");
    }};
 
    public static final ArrayList<String> RIGHT_STA_ROW_LIST  = new ArrayList<String>(){{
        add("3-1");
        add("3-2");
        add("3-3");
        add("4-1");
        add("4-2");
        add("4-3");
    }};
 
    public static final ArrayList<String> FAR_RIGHT_STA_ROW_LIST  = new ArrayList<String>(){{
        add("1-1");
        add("1-2");
        add("1-3");
        add("2-1");
        add("2-2");
        add("2-3");
    }};
 
}