dataLists(new MasterWorkerLists()); } /** * @notes 在线工程师列表 * @return \think\response\Json * @author likeadmin * @date 2024/07/10 18:17 */ public function onlineLists() { return $this->dataLists(new MasterWorkerOnlineLists()); } /** * @notes 添加 * @return \think\response\Json * @author likeadmin * @date 2024/07/10 18:17 */ public function add() { $params = (new MasterWorkerValidate())->post()->goCheck('add'); $result = MasterWorkerLogic::add($params); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(MasterWorkerLogic::getError()); } /** * @notes 编辑 * @return \think\response\Json * @author likeadmin * @date 2024/07/10 18:17 */ public function edit() { $params = (new MasterWorkerValidate())->post()->goCheck('edit'); $result = MasterWorkerLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(MasterWorkerLogic::getError()); } /** * @notes 删除 * @return \think\response\Json * @author likeadmin * @date 2024/07/10 18:17 */ public function delete() { $params = (new MasterWorkerValidate())->post()->goCheck('delete'); MasterWorkerLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取详情 * @return \think\response\Json * @author likeadmin * @date 2024/07/10 18:17 */ public function detail() { $params = (new MasterWorkerValidate())->goCheck('detail'); $result = MasterWorkerLogic::detail($params); return $this->data($result); } /** * 获取加盐密码 * @return \think\response\Json */ public function saltToPassword() { $params = (new MasterWorkerValidate())->get()->goCheck('saltToPassword'); $result = MasterWorkerLogic::saltToPassword($params); if (false === $result) { return $this->fail(MasterWorkerLogic::getError()); } return $this->data($result); } /** * @notes 工程师余额数据分析 * @return \think\response\Json */ public function moneyAnalysis() { return $this->dataLists(new MoneyAnalysis()); } public function getAllWorkers() { $params = (new MasterWorkerValidate())->get(); return $this->data(MasterWorkerLogic::getAllWorkers($params)); } /** * @notes 长期合作工程师停单 * @return \think\response\Json */ public function stop() { $params = (new MasterWorkerValidate())->post()->goCheck('stop'); $result = MasterWorkerLogic::stop($params,$this->adminInfo); if (true === $result) { return $this->success('停单成功', [], 1, 1); } return $this->fail(MasterWorkerLogic::getError()); } /** * @notes 长期合作工程师停单记录列表 * @return \think\response\Json */ public function stopLists() { return $this->dataLists(new MasterWorkerStopLists()); } /** * @notes 长期合作工程师排班列表 * @return \think\response\Json */ public function scheduleLists() { return $this->dataLists(new MasterWorkerScheduleLists()); } /** * @notes 设置备注 * @return \think\response\Json * @author likeadmin * @date 2024/07/10 18:17 */ public function setRemark() { $params = (new MasterWorkerValidate())->post()->goCheck('remark'); $result = MasterWorkerLogic::setRemark($params); if (true === $result) { return $this->success('设置成功', [], 1, 1); } return $this->fail(MasterWorkerLogic::getError()); } /** * @notes 设置特殊技能 * @return \think\response\Json * @author likeadmin * @date 2024/07/10 18:17 */ public function setSkill() { $params = (new MasterWorkerValidate())->post()->goCheck('skill'); $result = MasterWorkerLogic::setSkill($params); if (true === $result) { return $this->success('设置成功', [], 1, 1); } return $this->fail(MasterWorkerLogic::getError()); } /** * @notes 工程师质保金缴费二维码 * @return \think\response\Json */ public function retentionMoneyOrder() { $params = request()->post(); $result = MasterWorkerLogic::retentionMoneyOrder($params); if (false === $result) { return $this->fail(MasterWorkerLogic::getError()); } return $this->success('', $result, 1, 1); } /** * @notes 工程师质保金退费申请 * @return \think\response\Json */ public function retentionMoneyRefund() { $params = request()->post(); $result = MasterWorkerLogic::retentionMoneyRefund($params); if (false === $result) { return $this->fail(MasterWorkerLogic::getError()); } return $this->success('', $result, 1, 1); } }