18 lines
379 B
PHP
18 lines
379 B
PHP
<?php
|
|
/**
|
|
* yb_wm模块小程序接口定义
|
|
*
|
|
* @author 云贝网络
|
|
* @url
|
|
*/
|
|
defined('IN_IA') or exit('Access Denied');
|
|
|
|
class Yb_wmModuleWxapp extends WeModuleWxapp {
|
|
public function doPageTest(){
|
|
global $_GPC, $_W;
|
|
$errno = 0;
|
|
$message = '返回消息';
|
|
$data = array();
|
|
return $this->result($errno, $message, $data);
|
|
}
|
|
} |