123456789101112131415161718192021222324252627 |
- <?php
- namespace app\api\logic;
- use app\common\model\EngageTypeModel;
- /**
- * 获取项目相关数据
- *
- * @author wj
- * @date 2022-12-09
- */
- class DataLogic
- {
- /**
- * 获取招聘类型列表
- *
- * @return void
- * @author wj
- * @date 2022-12-09
- */
- public function getetlist()
- {
- $m_et = new EngageTypeModel();
- $list = $m_et->getList();
- return backarr(1, '查询成功', $list, 1, 0, 'id asc');
- }
- }
|