初始化项目:添加后端代码、ThinkPHP框架、前端资源

This commit is contained in:
amb
2026-09-03 12:42:39 +08:00
commit 482bece22e
3726 changed files with 416708 additions and 0 deletions
@@ -0,0 +1,71 @@
<?php
namespace ShaoZeMing\AliVod\SDK;
/**
* Request of SetAuditSecurityIp
*
* @method string getOperateMode()
* @method string getSecurityGroupName()
* @method string getIps()
*/
class SetAuditSecurityIpRequest extends \ShaoZeMing\Aliyun\Core\RpcAcsRequest
{
/**
* @var string
*/
protected $method = 'POST';
/**
* Class constructor.
*/
public function __construct()
{
parent::__construct(
'vod',
'2017-03-21',
'SetAuditSecurityIp',
'vod'
);
}
/**
* @param string $operateMode
*
* @return $this
*/
public function setOperateMode($operateMode)
{
$this->requestParameters['OperateMode'] = $operateMode;
$this->queryParameters['OperateMode'] = $operateMode;
return $this;
}
/**
* @param string $securityGroupName
*
* @return $this
*/
public function setSecurityGroupName($securityGroupName)
{
$this->requestParameters['SecurityGroupName'] = $securityGroupName;
$this->queryParameters['SecurityGroupName'] = $securityGroupName;
return $this;
}
/**
* @param string $ips
*
* @return $this
*/
public function setIps($ips)
{
$this->requestParameters['Ips'] = $ips;
$this->queryParameters['Ips'] = $ips;
return $this;
}
}