123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.edu.homework.student.comment.delete request
- *
- * @author auto create
- * @since 1.0, 2020.04.29
- */
- class OapiEduHomeworkStudentCommentDeleteRequest
- {
- /**
- * 业务编码
- **/
- private $bizCode;
-
- /**
- * 班级ID
- **/
- private $classId;
-
- /**
- * 评论ID
- **/
- private $commentId;
-
- /**
- * 作业ID
- **/
- private $hwId;
-
- /**
- * 学生ID
- **/
- private $studentId;
-
- /**
- * 老师UserID
- **/
- private $teacherUserid;
-
- private $apiParas = array();
-
- public function setBizCode($bizCode)
- {
- $this->bizCode = $bizCode;
- $this->apiParas["biz_code"] = $bizCode;
- }
- public function getBizCode()
- {
- return $this->bizCode;
- }
- public function setClassId($classId)
- {
- $this->classId = $classId;
- $this->apiParas["class_id"] = $classId;
- }
- public function getClassId()
- {
- return $this->classId;
- }
- public function setCommentId($commentId)
- {
- $this->commentId = $commentId;
- $this->apiParas["comment_id"] = $commentId;
- }
- public function getCommentId()
- {
- return $this->commentId;
- }
- public function setHwId($hwId)
- {
- $this->hwId = $hwId;
- $this->apiParas["hw_id"] = $hwId;
- }
- public function getHwId()
- {
- return $this->hwId;
- }
- public function setStudentId($studentId)
- {
- $this->studentId = $studentId;
- $this->apiParas["student_id"] = $studentId;
- }
- public function getStudentId()
- {
- return $this->studentId;
- }
- public function setTeacherUserid($teacherUserid)
- {
- $this->teacherUserid = $teacherUserid;
- $this->apiParas["teacher_userid"] = $teacherUserid;
- }
- public function getTeacherUserid()
- {
- return $this->teacherUserid;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.edu.homework.student.comment.delete";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|