30 lines
231 B
PHP
30 lines
231 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* 分组信息
|
||
|
* @author auto create
|
||
|
*/
|
||
|
class SeriesField
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* key
|
||
|
**/
|
||
|
public $key;
|
||
|
|
||
|
/**
|
||
|
* 文本
|
||
|
**/
|
||
|
public $text;
|
||
|
|
||
|
/**
|
||
|
* type
|
||
|
**/
|
||
|
public $type;
|
||
|
|
||
|
/**
|
||
|
* 值
|
||
|
**/
|
||
|
public $value;
|
||
|
}
|
||
|
?>
|