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
326 B
30 lines
326 B
<?php
|
|
|
|
/**
|
|
* 孩子信息
|
|
* @author auto create
|
|
*/
|
|
class BindStudent
|
|
{
|
|
|
|
/**
|
|
* 班级ID
|
|
**/
|
|
public $class_id;
|
|
|
|
/**
|
|
* 学校CorpId
|
|
**/
|
|
public $corp_id;
|
|
|
|
/**
|
|
* 孩子学段年级对应学段元数据的年级一级
|
|
**/
|
|
public $period_code;
|
|
|
|
/**
|
|
* 孩子学校的userid
|
|
**/
|
|
public $userid;
|
|
}
|
|
?>
|