1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /**
- * 结果
- * @author auto create
- */
- class OpenHwCommentResponse
- {
-
- /**
- * 扩展属性
- **/
- public $attributes;
-
- /**
- * 评论内容
- **/
- public $comment;
-
- /**
- * 评论ID
- **/
- public $comment_id;
-
- /**
- * 评论时间
- **/
- public $comment_time;
-
- /**
- * 视频
- **/
- public $media;
-
- /**
- * 图片
- **/
- public $photo;
-
- /**
- * 学生ID
- **/
- public $student_id;
-
- /**
- * 学生姓名
- **/
- public $student_name;
-
- /**
- * 老师ID
- **/
- public $teacher_id;
-
- /**
- * 老师姓名
- **/
- public $teacher_name;
-
- /**
- * 音频
- **/
- public $video;
- }
- ?>
|