xuxiuxi
2017-03-31 03f65ab5ad75eae6a438a65bcd66ce25a7551d1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.com.basic.face.util;
 
/**
 * Created by Sinoe on 2017/2/23.
 */
 
public class Constant {
 
    public static class CheckIn {
        /*来访登记左边被访者列表行类型*/
        public static final int INTERVIEWEE_ROW = 1;
        /*来访登记左边被访者列表行类型*/
        public static final int VISITOR_ROW = 2;
    }
 
    public static class Supervisory {
        public static final int VISIT_REGISTER_CELL = 1;
        public static final int VISIT_CHECK_IN_CELL = 2;
    }
 
}