使用workman

This commit is contained in:
2025-05-13 15:49:27 +08:00
parent c1547e191c
commit 2ff864b8c8
9 changed files with 446 additions and 13 deletions

View File

@@ -29,8 +29,11 @@ class AppUserCreateRequest extends IRequest
return $this->biz;
}
public function setBiz(array $biz): void
public function setBiz(array|string $biz): void
{
if (is_string($biz)) {
$biz = [$biz];
}
$this->biz = $biz;
}