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 * @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()); } }