This commit is contained in:
2026-08-14 11:48:53 +08:00
parent 831113e22f
commit 396556a30f
3 changed files with 18 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ class AuthService
}
if ($user['status'] != 1) {
throw new \Exception('账户已禁用');
throw new \Exception('账户已禁用,请联系管理员');
}

View File

@@ -57,7 +57,10 @@ class TicketService
/**
* 新增工单
* 创建工单业务逻辑
* @param array $data 工单数据
* @return Tickets
* @throws \Exception
*/
public function createTicket(array $data)
{