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.
30 lines
272 B
30 lines
272 B
<?php
|
|
|
|
/**
|
|
* 班级
|
|
* @author auto create
|
|
*/
|
|
class OpenClass
|
|
{
|
|
|
|
/**
|
|
* 班级level
|
|
**/
|
|
public $class_level;
|
|
|
|
/**
|
|
* 班级名
|
|
**/
|
|
public $name;
|
|
|
|
/**
|
|
* 班级nick
|
|
**/
|
|
public $nick;
|
|
|
|
/**
|
|
* 是否只展现nick
|
|
**/
|
|
public $only_use_nick;
|
|
}
|
|
?>
|