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,90 @@
<?php
namespace App\Bean\Model\Wallet\Platform;
use App\Bean\Model\Base\BaseBean;
class WalletPlatformBean extends BaseBean
{
protected $id;
protected $name;
protected $code;
protected $appid;
protected $secret;
protected $notify_ip;
protected $created_at;
public function getId()
{
return $this->id;
}
public function setId($id): void
{
$this->id = $id;
}
public function getName()
{
return $this->name;
}
public function setName($name): void
{
$this->name = $name;
}
public function getCode()
{
return $this->code;
}
public function setCode($code): void
{
$this->code = $code;
}
public function getAppid()
{
return $this->appid;
}
public function setAppid($appid): void
{
$this->appid = $appid;
}
public function getSecret()
{
return $this->secret;
}
public function setSecret($secret): void
{
$this->secret = $secret;
}
public function getNotifyIp()
{
return $this->notify_ip;
}
public function setNotifyIp($notify_ip): void
{
$this->notify_ip = $notify_ip;
}
public function getCreatedAt()
{
return $this->created_at;
}
public function setCreatedAt($created_at): void
{
$this->created_at = $created_at;
}
}