platform notify

This commit is contained in:
cano
2024-03-27 00:11:26 +08:00
parent 01e93acdd8
commit 4b47fe7250
21 changed files with 462 additions and 18 deletions

View File

@ -0,0 +1,23 @@
<?php
namespace App\Bean\Service;
use App\Bean\Model\Base\BaseBean;
class HttpServiceConfigBean extends BaseBean
{
protected bool $is_return_json = true;
public function isIsReturnJson(): bool
{
return $this->is_return_json;
}
public function setIsReturnJson(bool $is_return_json): void
{
$this->is_return_json = $is_return_json;
}
}