| | |
| | | public static final String HK_HTTPS ="HK_HTTPS" ; |
| | | public static final String HK_PUSH_URL = "HK_PUSH_URL"; |
| | | public static final String HK_ROOTORG_CODE ="HK_ROOTORG_CODE" ; |
| | | public static final String HK_ROOTORG_NAME ="HK_ROOTORG_NAME" ; |
| | | |
| | | //被拜访人信息校验方式(0手机号单独校验 1手机号和姓名组合校验) |
| | | public static final String BEVISITED_USER_VALID = "BEVISITED_USER_VALID"; |
| | |
| | | public static final String FTP_USERNAME ="FTP_USERNAME" ; |
| | | public static final String FTP_PWD ="FTP_PWD" ; |
| | | public static final String FTP_RESOURCE_PATH ="FTP_RESOURCE_PATH" ; |
| | | public static final String ERP_ORGLIST_URL ="ERP_ORGLIST_URL" ; |
| | | public static final String ERP_USERLIST_URL ="ERP_USERLIST_URL" ; |
| | | public static final String ERP_APPROVE_URL ="ERP_APPROVE_URL" ; |
| | | public static final String ERP_USERSTATUS_RL ="ERP_USERSTATUS_RL" ; |
| | | public static final String ERP ="ERP" ; |
| | | public static final Integer THREE =3 ; |
| | | public static final String ORG_USER_ORIGIN = "ORG_USER_ORIGIN"; |
| | | public static boolean DEALING_HK_SYNCPRIVILEGE= false; |
| | | public static boolean DEALING_HK_SYNCDEVICE = false; |
| | | public static boolean DEALING_HK_SYNCPARK = false; |
| | | public static boolean DEALING_HK_IMG = false; |
| | | public static boolean DEALING_HK_ORG = false; |
| | | public static boolean DEALING_HK_USER = false; |
| | | public static boolean DEALING_HK_VISIT = false; |
| | | public static boolean DEALING_HK_EMPOWER = false; |
| | | public static boolean DEALING_HK_EMPOWER_DETAIL = false; |
| | | public static boolean DEALING_HK_EMPOWER_RESULT = false; |
| | | public static boolean DEALING_HK_PARKBOOK = false; |
| | | // ERP接口配置 |
| | | public static final String ERP_CONFIG = "ERP_CONFIG"; |
| | | // ERP ACCESS_KEY |
| | | public static final String ERP_ACCESS_KEY = "ERP_ACCESS_KEY"; |
| | | // ERP ACCESS_SECRET |
| | | public static final String ERP_ACCESS_SECRET = "ERP_ACCESS_SECRET"; |
| | | |
| | | // 内部人员冻结配置时间 |
| | | public static final String TIMEOUT_FREEZE = "TIMEOUT_FREEZE"; |
| | | |
| | | // FTP文件服务器资源访问地址 |
| | | |
| | | public static Date getBirthdyByCardNo(String idCard){ |
| | | if(idCard ==null || idCard.length()<14){ |
| | |
| | | try { |
| | | birthday = dateFormat.parse(birthdayString); |
| | | } catch (Exception e) { |
| | | throw new RuntimeException(e); |
| | | // throw new RuntimeException(e); |
| | | } |
| | | return birthday; |
| | | } |
| | | public static Integer getSexByCardNo(String idCard){ |
| | | if(idCard ==null || idCard.length()<17){ |
| | | return null; |
| | | } |
| | | String str = idCard.substring(16, 17); // 截取身份证号的前六位数字作为出生日期 |
| | | try { |
| | | Integer num = Integer.parseInt(str); |
| | | return (num % 2 !=0) ? 1:2 ; |
| | | } catch (Exception e) { |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | /** |
| | | * 判断是否为有效车牌号 |
| | |
| | | int xfSuccess = 5; |
| | | int xfFail = 6; |
| | | int signout = 7; |
| | | } |
| | | public interface EmpowerStatus{ |
| | | //一卡通授权下发状态 0待下发 1已下发 2下发成功 3已取消 4下发失败 5任务下载已结束 |
| | | int wait = 0; |
| | | int ing = 1; |
| | | int pass = 2; |
| | | int cancel = 3; |
| | | int fail = 4; |
| | | int downloaded = 5; |
| | | } |
| | | public interface DOOR_ROLE_TYPE{ |
| | | int lw = 0; |
| | |
| | | |
| | | |
| | | public interface memberType{ |
| | | int visitor = 0;//普通访客 |
| | | int lw_visitor = 1;//劳务访客 |
| | | int lw_visitor = 0;//劳务访客 |
| | | int visitor = 1;//普通访客 |
| | | int internal = 2;//内部人员 |
| | | } |
| | | public static void main(String[] args) { |
| | |
| | | /** 用户启用禁用枚举值*/ |
| | | ENABLE(0,"正常"), |
| | | DISABLE(1,"禁用"), |
| | | FREEZE(2,"拉黑/冻结"); |
| | | FREEZE(2,"拉黑/冻结"), |
| | | |
| | | /** 用户类型 **/ |
| | | LW_FK(0,"劳务访客"), |
| | | PT_FK(1,"普通访客"), |
| | | NB_FK(2,"内部人员"); |
| | | |
| | | private Integer value; |
| | | private String des; |
| | |
| | | T reqJson = mapper.readValue(json, clazz); |
| | | return reqJson; |
| | | } |
| | | |
| | | |
| | | } |