📄 operateconstants.java
字号:
/**
*
*/
package cn.edu.nwpu.MobileCampusServer;
/**
* @author NickJava
*
*/
public class OperateConstants {
private OperateConstants() {
}
//请求动作
public static final byte CHANGE_PWD = 1;
public static final byte ENGLISH_CHANGE_CHINESE = 2;
public static final byte CHINESE_CHANGE_ENGLISH=3;
public static final byte LOGIN = 4;
public static final byte SEARCH_BOOK = 5;
//响应
public static final byte CHANGEPWD_SUCCESS = 102;
public static final byte CHANGEPWD_FAIL = 103;
public static final byte LOGIN_SUCCESS = 104;
public static final byte ERROR_PWD = 105;
public static final byte NO_USER = 111;
public static final byte NO_BOOK = 109;
public static final byte HAS_BOOK = 112;
public static final byte HAS_BORROW_BOOK = 115;
public static final byte LOOK_CHIOCE_ELECTIVE = 116;
public static final byte HAS_ELECTIVE = 113;
public static final byte NO_ELECTIVE = 114;
public static final byte SEARCH_FAIL = 106;
public static final byte NO_MEANING = 107;
public static final byte NO_WORD = 108;
public static final byte SEARCH_MEANING = 109;
public static final byte SEARCH_WORD = 110;
public static final byte DEL_CHIOCE_ELECTIVE = 120;
public static final byte SEARCH_ELECTIVE = 121;
public static final byte DEL_ELECTIVE_SUCCESS = 121;
public static final byte DEL_ELECTIVE_FALL = 122;
public static final byte ADD_ELECTIVE = 123;
public static final byte ADD_ELECTIVE_FALL = 124;
public static final byte ADD_ELECTIVE_SUCCESS = 125;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -