1.添加pc端查询求职者列表

2.添加pc录用接口
This commit is contained in:
sh
2025-11-25 13:27:10 +08:00
parent f37508674b
commit 63dc346ca0
10 changed files with 235 additions and 10 deletions

View File

@@ -35,6 +35,20 @@ public class StringUtil {
*/
public static final String BASE_WW_GW="http://http://222.80.110.161:11111/kashi/job-portal/detail/:";
/**
*录用
*/
public static final String HIRE_LY="0";
/**
*录用-系统
*/
public static final String HIRE_SOURCE_SYSTEM="0";
/**
*录用-招聘会
*/
public static final String HIRE_SOURCE_ZPH="1";
public static Boolean isEmptyOrNull(String s){
if(Objects.isNull(s)){return true;}
return s.isEmpty();