35 lines
410 B
PHP
35 lines
410 B
PHP
<?php
|
|
|
|
/**
|
|
* 用户使用的模板数据
|
|
* @author auto create
|
|
*/
|
|
class UserTemplateDo
|
|
{
|
|
|
|
/**
|
|
* 品牌 code
|
|
**/
|
|
public $brand_code;
|
|
|
|
/**
|
|
* keys
|
|
**/
|
|
public $keys;
|
|
|
|
/**
|
|
* 用户使用模板的id
|
|
**/
|
|
public $user_std_template_id;
|
|
|
|
/**
|
|
* 用户使用模板名称
|
|
**/
|
|
public $user_std_template_name;
|
|
|
|
/**
|
|
* 用户使用模板的url
|
|
**/
|
|
public $user_std_template_url;
|
|
}
|
|
?>
|