作者 lyh

gx

... ... @@ -30,11 +30,6 @@ class HrController extends BaseController
return $this->success($data);
}
public function parm_desciption(HrLogic $logic){
$data = $logic->parms();
return $this->success($data);
}
/**
* @remark :获取所有搜索参数
* @name :deptList
... ...
... ... @@ -73,7 +73,7 @@ class HrLogic extends BaseLogic
$data['entry_position'] = $this->entryPositionList();
$data['p_level'] = $this->pLevel();
$data['political_outlook'] = $this->politicalOutlook();
$data['PartyBranch'] = $this->IsPartyBranch();
$data['partyBranch'] = $this->IsPartyBranch();
return $data;
}
... ...
... ... @@ -17,86 +17,8 @@ class ManageHr extends Base
return ['photo_gallery','id_card_gallery','certificate_gallery','career_history','learning_history'];
}
/**
* 归属小组
* @return string[]
* @author zgj
* @date 2023/5/31
*/
public static function belongGroup()
{
return [
1 => 'KA组',
2 => 'A组',
3 => 'B组',
4 => 'C组',
5 => 'D组',
6 => 'E组',
7 => 'F组',
8 => 'G组',
9 => 'H组',
10 => 'GA组',
11=> 'GB组',
12 => 'GC组',
13 => '前端组',
14 => '后端组',
15 => '黑格组',
16 => '售后组',
0 => '其他',
];
}
/**
* 学历
* @return string[]
* @author zgj
* @date 2023/5/31
*/
public static function education()
{
return [
1 => '专科',
2 => '本科',
3 => '研究生及以上',
0 => '其他',
];
}
/**
* 入职岗位
* @return string[]
* @author zgj
* @date 2023/5/31
*/
public static function entryPosition()
{
return [
1 => '优化师',
2 => '优化师助理',
3 => '优化顾问',
4 => '项目经理',
5 => '平面设计',
6 => '技术经理',
7 => '技术主管',
8 => '技术总监',
9 => '渠道经理',
10 => '前端研发',
11=> '后端研发',
12 => '行政财务',
13 => '品牌营销',
14 => '销售经理',
15 => '销售主管',
16 => '售后技术',
17 => '售后服务',
18 => '外贸销售',
19 => '渠道助理',
20 => '黑格运营',
21 => '运营',
22 => '短视频剪辑师',
23 => '人事',
24 => '采购',
0 => '其他',
];
}
/**
* 级别序列
... ...