15 lines
140 B
PHP
15 lines
140 B
PHP
<?php
|
|
|
|
/**
|
|
* 响应response
|
|
* @author auto create
|
|
*/
|
|
class GenerateTokenResponse
|
|
{
|
|
|
|
/**
|
|
* 返回的token
|
|
**/
|
|
public $token;
|
|
}
|
|
?>
|