|
...
|
...
|
@@ -5,6 +5,7 @@ namespace App\Http\Logic\Aside\Manage; |
|
|
|
|
|
|
|
use App\Http\Logic\Aside\BaseLogic;
|
|
|
|
use App\Models\Manage\BelongingGroup;
|
|
|
|
use App\Models\Manage\EntryPosition;
|
|
|
|
use App\Models\Manage\ManageHr;
|
|
|
|
|
|
|
|
|
|
...
|
...
|
@@ -80,4 +81,46 @@ class HrLogic extends BaseLogic |
|
|
|
$lists = $belongingGroupModel->list($map);
|
|
|
|
return $this->success($lists);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :获取学历
|
|
|
|
* @name :educationList
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2023/7/22 17:49
|
|
|
|
*/
|
|
|
|
public function educationList(){
|
|
|
|
$data = [
|
|
|
|
1 => '专科',
|
|
|
|
2 => '本科',
|
|
|
|
3 => '研究生及以上',
|
|
|
|
0 => '其他',
|
|
|
|
];
|
|
|
|
return $this->success($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :入职岗位
|
|
|
|
* @name :entryPositionList
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2023/7/22 17:51
|
|
|
|
*/
|
|
|
|
public function entryPositionList($map){
|
|
|
|
$entryPositionModel = new EntryPosition();
|
|
|
|
$lists = $entryPositionModel->list($map);
|
|
|
|
return $this->success($lists);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :职务级别
|
|
|
|
* @name :pLevel
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2023/7/22 18:10
|
|
|
|
*/
|
|
|
|
public function pLevel(){
|
|
|
|
$lists = [];
|
|
|
|
return $this->success($lists);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|