| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- <?php
- // +----------------------------------------------------------------------
- // | likeadmin快速开发前后端分离管理后台(PHP版)
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | 开源版本可自由商用,可去除界面版权logo
- // | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
- // | github下载:https://github.com/likeshop-github/likeadmin
- // | 访问官网:https://www.likeadmin.cn
- // | likeadmin团队 版权所有 拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeadminTeam
- // +----------------------------------------------------------------------
- namespace app\adminapi\controller\master_worker;
- use app\adminapi\controller\BaseAdminController;
- use app\adminapi\lists\master_worker\MasterWorkerLists;
- use app\adminapi\lists\master_worker\MoneyAnalysis;
- use app\adminapi\lists\master_worker\MasterWorkerOnlineLists;
- use app\adminapi\lists\master_worker\MasterWorkerStopLists;
- use app\adminapi\logic\master_worker\MasterWorkerLogic;
- use app\adminapi\validate\master_worker\MasterWorkerValidate;
- use app\adminapi\lists\master_worker\MasterWorkerScheduleLists;
- /**
- * MasterWorker控制器
- * Class MasterWorkerController
- * @package app\adminapi\controller\master_worker
- */
- class MasterWorkerController extends BaseAdminController
- {
- /**
- * @notes 获取列表
- * @return \think\response\Json
- * @author likeadmin
- * @date 2024/07/10 18:17
- */
- public function lists()
- {
- return $this->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);
-
- }
- }
|