27983dbe
孙向锦
project init
|
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
|
package com.sunvote.xpadapp;
/**
* 系统常量
* Created by wutaian on 2017/5/31.
*/
public class ConstantValues {
//键盘异常
public static final int Msg_ComError = 2;
//键盘在线
public static final int Msg_Online=1;
//键盘离线
public static final int Msg_Offline=0;
//投票信标
public static final int Msg_onVoteEvent=3;
//欢迎界面
public static final int Msg_Welcome = 4;
//当前键盘状态
public static int Curr_Status = 0;
//UID签到授权代码 1:成功 2:退出授权 3:未授权
public static String AuthCode="";
//默然评分规则id
public static int DefalutScoreRuleId = 1000000;
// 项目名称信息表
public static final String TBL_ITEM = "t_item";
// 综合测评规则表
public static final String TBL_ITEM_RULE = "t_item_rule";
// 评分规则表
public static final String TBL_SCORE_RULE = "t_score_rule";
// 评议规则表
public static final String TBL_EVALUATION_RULE = "t_evaluation_rule";
// 评分规则说明表
public static final String TBL_SCORERULE_EXPLAIN = "t_score_rule_explain";
// 评分历史记录
public static final String TBL_SCORE_HISTORY = "t_score_history";
//跳转key
public static final String SKIP_SCORE_TIP_KEY = "skipScoreTipKey";
public static final String SKIP_VOTE_KEY = "skipVoteKey";
public static final String SKIP_VOTE_KEYS = "skipVoteKeys";
//跳转详情界面key
public static final String SKIP_DETAIL_KEY = "skipDetailKey";
public static final String SKIP_DETAIL_TITLE_KEY = "skipDetailTitleKey";
}
|