37 lines
585 B
PHP
37 lines
585 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/*
|
||
|
|
* This file is part of the Qsnh/meedu.
|
||
|
|
*
|
||
|
|
* (c) XiaoTeng <616896861@qq.com>
|
||
|
|
*
|
||
|
|
* This source file is subject to the MIT license that is bundled
|
||
|
|
* with this source code in the file LICENSE.
|
||
|
|
*/
|
||
|
|
|
||
|
|
class AcsResponse
|
||
|
|
{
|
||
|
|
private $code;
|
||
|
|
private $message;
|
||
|
|
|
||
|
|
public function getCode()
|
||
|
|
{
|
||
|
|
return $this->code;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function setCode($code)
|
||
|
|
{
|
||
|
|
$this->code = $code;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function getMessage()
|
||
|
|
{
|
||
|
|
return $this->message;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function setMessage($message)
|
||
|
|
{
|
||
|
|
$this->message = $message;
|
||
|
|
}
|
||
|
|
}
|