作者 lyh

gx

@@ -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
@@ -70,4 +71,46 @@ class HrLogic extends BaseLogic @@ -70,4 +71,46 @@ class HrLogic extends BaseLogic
70 $lists = $belongingGroupModel->list($map); 71 $lists = $belongingGroupModel->list($map);
71 return $this->success($lists); 72 return $this->success($lists);
72 } 73 }
  74 +
  75 + /**
  76 + * @remark :获取学历
  77 + * @name :educationList
  78 + * @author :lyh
  79 + * @method :post
  80 + * @time :2023/7/22 17:49
  81 + */
  82 + public function educationList(){
  83 + $data = [
  84 + 1 => '专科',
  85 + 2 => '本科',
  86 + 3 => '研究生及以上',
  87 + 0 => '其他',
  88 + ];
  89 + return $this->success($data);
  90 + }
  91 +
  92 + /**
  93 + * @remark :入职岗位
  94 + * @name :entryPositionList
  95 + * @author :lyh
  96 + * @method :post
  97 + * @time :2023/7/22 17:51
  98 + */
  99 + public function entryPositionList($map){
  100 + $entryPositionModel = new EntryPosition();
  101 + $lists = $entryPositionModel->list($map);
  102 + return $this->success($lists);
  103 + }
  104 +
  105 + /**
  106 + * @remark :职务级别
  107 + * @name :pLevel
  108 + * @author :lyh
  109 + * @method :post
  110 + * @time :2023/7/22 18:10
  111 + */
  112 + public function pLevel(){
  113 + $lists = [];
  114 + return $this->success($lists);
  115 + }
73 } 116 }
  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 +}