package com.vincent.rsf.framework.common; public interface BaseRes { String OK = "200-Success"; String EMPTY = "201-Empty Data"; String LIMIT = "202-No Authority"; String PARAM = "203-Parameters Cannot Be Empty"; String DENIED = "403-Please Re-Login"; String REPEAT = "407-Already Exist"; String NO_ACTIVATION = "409-Please Activate The System First"; String ERROR = "500-Internal Server Error"; // String OK = "200-操作成功"; // String EMPTY = "201-暂无数据"; // String LIMIT = "202-无权限"; // String PARAM = "203-参数为空"; // String DENIED = "403-请重新登录"; // String REPEAT = "407-已存在"; // String NO_ACTIVATION = "409-请先激活系统"; // String ERROR = "500-服务器错误"; }