You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
240 B
20 lines
240 B
<?php
|
|
|
|
/**
|
|
* 消息体的表单,最多显示6个,超过会被隐藏
|
|
* @author auto create
|
|
*/
|
|
class Form
|
|
{
|
|
|
|
/**
|
|
* 消息体的关键字
|
|
**/
|
|
public $key;
|
|
|
|
/**
|
|
* 消息体的关键字对应的值
|
|
**/
|
|
public $value;
|
|
}
|
|
?>
|