20 lines
211 B
PHP
20 lines
211 B
PHP
<?php
|
|
|
|
/**
|
|
* 所有cp的数据
|
|
* @author auto create
|
|
*/
|
|
class UserTemplateResult
|
|
{
|
|
|
|
/**
|
|
* cp编码
|
|
**/
|
|
public $cp_code;
|
|
|
|
/**
|
|
* 用户使用的模板数据
|
|
**/
|
|
public $user_std_templates;
|
|
}
|
|
?>
|