You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
292 B
30 lines
292 B
<?php
|
|
|
|
/**
|
|
* result
|
|
* @author auto create
|
|
*/
|
|
class DingOpenResult
|
|
{
|
|
|
|
/**
|
|
* dingOpenErrcode
|
|
**/
|
|
public $ding_open_errcode;
|
|
|
|
/**
|
|
* errorMsg
|
|
**/
|
|
public $error_msg;
|
|
|
|
/**
|
|
* 返回图片的base64编码
|
|
**/
|
|
public $result;
|
|
|
|
/**
|
|
* success
|
|
**/
|
|
public $success;
|
|
}
|
|
?>
|