作者 张关杰

Merge branch 'develop' of http://47.244.231.31:8099/zhl/globalso-v6 into develop

@@ -5,6 +5,7 @@ namespace App\Http\Logic\Aside\Manage; @@ -5,6 +5,7 @@ namespace App\Http\Logic\Aside\Manage;
5 5
6 use App\Http\Logic\Aside\BaseLogic; 6 use App\Http\Logic\Aside\BaseLogic;
7 use App\Models\Manage\BelongingGroup; 7 use App\Models\Manage\BelongingGroup;
  8 +use App\Models\Manage\EntryPosition;
8 use App\Models\Manage\ManageHr; 9 use App\Models\Manage\ManageHr;
9 10
10 11
@@ -80,4 +81,46 @@ class HrLogic extends BaseLogic @@ -80,4 +81,46 @@ class HrLogic extends BaseLogic
80 $lists = $belongingGroupModel->list($map); 81 $lists = $belongingGroupModel->list($map);
81 return $this->success($lists); 82 return $this->success($lists);
82 } 83 }
  84 +
  85 + /**
  86 + * @remark :获取学历
  87 + * @name :educationList
  88 + * @author :lyh
  89 + * @method :post
  90 + * @time :2023/7/22 17:49
  91 + */
  92 + public function educationList(){
  93 + $data = [
  94 + 1 => '专科',
  95 + 2 => '本科',
  96 + 3 => '研究生及以上',
  97 + 0 => '其他',
  98 + ];
  99 + return $this->success($data);
  100 + }
  101 +
  102 + /**
  103 + * @remark :入职岗位
  104 + * @name :entryPositionList
  105 + * @author :lyh
  106 + * @method :post
  107 + * @time :2023/7/22 17:51
  108 + */
  109 + public function entryPositionList($map){
  110 + $entryPositionModel = new EntryPosition();
  111 + $lists = $entryPositionModel->list($map);
  112 + return $this->success($lists);
  113 + }
  114 +
  115 + /**
  116 + * @remark :职务级别
  117 + * @name :pLevel
  118 + * @author :lyh
  119 + * @method :post
  120 + * @time :2023/7/22 18:10
  121 + */
  122 + public function pLevel(){
  123 + $lists = [];
  124 + return $this->success($lists);
  125 + }
83 } 126 }
  1 +<?php
  2 +
  3 +namespace App\Models\Manage;
  4 +
  5 +use App\Models\Base;
  6 +
  7 +/**
  8 + * @remark :
  9 + * @class :EntryPosition.php
  10 + * @author :lyh
  11 + * @time :2023/7/22 18:08
  12 + */
  13 +class EntryPosition extends Base
  14 +{
  15 + protected $table = 'gl_manager_entry_position';
  16 +}