45 lines
548 B
PHP
45 lines
548 B
PHP
<?php
|
||
|
||
/**
|
||
* data
|
||
* @author auto create
|
||
*/
|
||
class CustomAreaResult
|
||
{
|
||
|
||
/**
|
||
* 自定义区id
|
||
**/
|
||
public $custom_area_id;
|
||
|
||
/**
|
||
* 自定义区名称
|
||
**/
|
||
public $custom_area_name;
|
||
|
||
/**
|
||
* 自定义区url
|
||
**/
|
||
public $custom_area_url;
|
||
|
||
/**
|
||
* 变量
|
||
**/
|
||
public $keys;
|
||
|
||
/**
|
||
* 标准模板名称
|
||
**/
|
||
public $standard_template_id;
|
||
|
||
/**
|
||
* 标准模板url
|
||
**/
|
||
public $standard_template_url;
|
||
|
||
/**
|
||
* 用户模板id,等同于mystdtemplates.get中返回的用户模板id
|
||
**/
|
||
public $user_template_id;
|
||
}
|
||
?>
|