正在显示
3 个修改的文件
包含
2 行增加
和
85 行删除
| @@ -30,11 +30,6 @@ class HrController extends BaseController | @@ -30,11 +30,6 @@ class HrController extends BaseController | ||
| 30 | return $this->success($data); | 30 | return $this->success($data); |
| 31 | } | 31 | } |
| 32 | 32 | ||
| 33 | - public function parm_desciption(HrLogic $logic){ | ||
| 34 | - $data = $logic->parms(); | ||
| 35 | - return $this->success($data); | ||
| 36 | - } | ||
| 37 | - | ||
| 38 | /** | 33 | /** |
| 39 | * @remark :获取所有搜索参数 | 34 | * @remark :获取所有搜索参数 |
| 40 | * @name :deptList | 35 | * @name :deptList |
| @@ -73,7 +73,7 @@ class HrLogic extends BaseLogic | @@ -73,7 +73,7 @@ class HrLogic extends BaseLogic | ||
| 73 | $data['entry_position'] = $this->entryPositionList(); | 73 | $data['entry_position'] = $this->entryPositionList(); |
| 74 | $data['p_level'] = $this->pLevel(); | 74 | $data['p_level'] = $this->pLevel(); |
| 75 | $data['political_outlook'] = $this->politicalOutlook(); | 75 | $data['political_outlook'] = $this->politicalOutlook(); |
| 76 | - $data['PartyBranch'] = $this->IsPartyBranch(); | 76 | + $data['partyBranch'] = $this->IsPartyBranch(); |
| 77 | return $data; | 77 | return $data; |
| 78 | } | 78 | } |
| 79 | 79 |
| @@ -17,86 +17,8 @@ class ManageHr extends Base | @@ -17,86 +17,8 @@ class ManageHr extends Base | ||
| 17 | return ['photo_gallery','id_card_gallery','certificate_gallery','career_history','learning_history']; | 17 | return ['photo_gallery','id_card_gallery','certificate_gallery','career_history','learning_history']; |
| 18 | } | 18 | } |
| 19 | 19 | ||
| 20 | - /** | ||
| 21 | - * 归属小组 | ||
| 22 | - * @return string[] | ||
| 23 | - * @author zgj | ||
| 24 | - * @date 2023/5/31 | ||
| 25 | - */ | ||
| 26 | - public static function belongGroup() | ||
| 27 | - { | ||
| 28 | - return [ | ||
| 29 | - 1 => 'KA组', | ||
| 30 | - 2 => 'A组', | ||
| 31 | - 3 => 'B组', | ||
| 32 | - 4 => 'C组', | ||
| 33 | - 5 => 'D组', | ||
| 34 | - 6 => 'E组', | ||
| 35 | - 7 => 'F组', | ||
| 36 | - 8 => 'G组', | ||
| 37 | - 9 => 'H组', | ||
| 38 | - 10 => 'GA组', | ||
| 39 | - 11=> 'GB组', | ||
| 40 | - 12 => 'GC组', | ||
| 41 | - 13 => '前端组', | ||
| 42 | - 14 => '后端组', | ||
| 43 | - 15 => '黑格组', | ||
| 44 | - 16 => '售后组', | ||
| 45 | - 0 => '其他', | ||
| 46 | - ]; | ||
| 47 | - } | ||
| 48 | 20 | ||
| 49 | - /** | ||
| 50 | - * 学历 | ||
| 51 | - * @return string[] | ||
| 52 | - * @author zgj | ||
| 53 | - * @date 2023/5/31 | ||
| 54 | - */ | ||
| 55 | - public static function education() | ||
| 56 | - { | ||
| 57 | - return [ | ||
| 58 | - 1 => '专科', | ||
| 59 | - 2 => '本科', | ||
| 60 | - 3 => '研究生及以上', | ||
| 61 | - 0 => '其他', | ||
| 62 | - ]; | ||
| 63 | - } | ||
| 64 | - /** | ||
| 65 | - * 入职岗位 | ||
| 66 | - * @return string[] | ||
| 67 | - * @author zgj | ||
| 68 | - * @date 2023/5/31 | ||
| 69 | - */ | ||
| 70 | - public static function entryPosition() | ||
| 71 | - { | ||
| 72 | - return [ | ||
| 73 | - 1 => '优化师', | ||
| 74 | - 2 => '优化师助理', | ||
| 75 | - 3 => '优化顾问', | ||
| 76 | - 4 => '项目经理', | ||
| 77 | - 5 => '平面设计', | ||
| 78 | - 6 => '技术经理', | ||
| 79 | - 7 => '技术主管', | ||
| 80 | - 8 => '技术总监', | ||
| 81 | - 9 => '渠道经理', | ||
| 82 | - 10 => '前端研发', | ||
| 83 | - 11=> '后端研发', | ||
| 84 | - 12 => '行政财务', | ||
| 85 | - 13 => '品牌营销', | ||
| 86 | - 14 => '销售经理', | ||
| 87 | - 15 => '销售主管', | ||
| 88 | - 16 => '售后技术', | ||
| 89 | - 17 => '售后服务', | ||
| 90 | - 18 => '外贸销售', | ||
| 91 | - 19 => '渠道助理', | ||
| 92 | - 20 => '黑格运营', | ||
| 93 | - 21 => '运营', | ||
| 94 | - 22 => '短视频剪辑师', | ||
| 95 | - 23 => '人事', | ||
| 96 | - 24 => '采购', | ||
| 97 | - 0 => '其他', | ||
| 98 | - ]; | ||
| 99 | - } | 21 | + |
| 100 | 22 | ||
| 101 | /** | 23 | /** |
| 102 | * 级别序列 | 24 | * 级别序列 |
-
请 注册 或 登录 后发表评论