com.aliyun.dingtalkedu_1_0.models.SaveStudentLearningDataRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class SaveStudentLearningDataRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("assignNum")
public Integer assignNum;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("bizId")
public String bizId;
/**
* This parameter is required.
*
* example:
* HOMEWORK
*/
@NameInMap("bizType")
public String bizType;
/**
* This parameter is required.
*
* example:
* dingxxxxxxxxxxxxxxxxxxxxx
*/
@NameInMap("corpId")
public String corpId;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("correctNum")
public Integer correctNum;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("deptId")
public Long deptId;
/**
* example:
* .jpeg
*/
@NameInMap("fileSuffix")
public String fileSuffix;
/**
* This parameter is required.
*
* example:
* 1672502400000
*/
@NameInMap("generatedTime")
public Long generatedTime;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("questionNum")
public Integer questionNum;
/**
* This parameter is required.
*
* example:
* 0123456
*/
@NameInMap("studentUserId")
public String studentUserId;
/**
* This parameter is required.
*
* example:
* shuxue
*/
@NameInMap("subjectCode")
public String subjectCode;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("submitNum")
public Integer submitNum;
@NameInMap("wrongQuestions")
public java.util.List wrongQuestions;
public static SaveStudentLearningDataRequest build(java.util.Map map) throws Exception {
SaveStudentLearningDataRequest self = new SaveStudentLearningDataRequest();
return TeaModel.build(map, self);
}
public SaveStudentLearningDataRequest setAssignNum(Integer assignNum) {
this.assignNum = assignNum;
return this;
}
public Integer getAssignNum() {
return this.assignNum;
}
public SaveStudentLearningDataRequest setBizId(String bizId) {
this.bizId = bizId;
return this;
}
public String getBizId() {
return this.bizId;
}
public SaveStudentLearningDataRequest setBizType(String bizType) {
this.bizType = bizType;
return this;
}
public String getBizType() {
return this.bizType;
}
public SaveStudentLearningDataRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public SaveStudentLearningDataRequest setCorrectNum(Integer correctNum) {
this.correctNum = correctNum;
return this;
}
public Integer getCorrectNum() {
return this.correctNum;
}
public SaveStudentLearningDataRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public SaveStudentLearningDataRequest setFileSuffix(String fileSuffix) {
this.fileSuffix = fileSuffix;
return this;
}
public String getFileSuffix() {
return this.fileSuffix;
}
public SaveStudentLearningDataRequest setGeneratedTime(Long generatedTime) {
this.generatedTime = generatedTime;
return this;
}
public Long getGeneratedTime() {
return this.generatedTime;
}
public SaveStudentLearningDataRequest setQuestionNum(Integer questionNum) {
this.questionNum = questionNum;
return this;
}
public Integer getQuestionNum() {
return this.questionNum;
}
public SaveStudentLearningDataRequest setStudentUserId(String studentUserId) {
this.studentUserId = studentUserId;
return this;
}
public String getStudentUserId() {
return this.studentUserId;
}
public SaveStudentLearningDataRequest setSubjectCode(String subjectCode) {
this.subjectCode = subjectCode;
return this;
}
public String getSubjectCode() {
return this.subjectCode;
}
public SaveStudentLearningDataRequest setSubmitNum(Integer submitNum) {
this.submitNum = submitNum;
return this;
}
public Integer getSubmitNum() {
return this.submitNum;
}
public SaveStudentLearningDataRequest setWrongQuestions(java.util.List wrongQuestions) {
this.wrongQuestions = wrongQuestions;
return this;
}
public java.util.List getWrongQuestions() {
return this.wrongQuestions;
}
public static class SaveStudentLearningDataRequestWrongQuestions extends TeaModel {
@NameInMap("knowledgePoints")
public java.util.List knowledgePoints;
/**
* example:
* 1
*/
@NameInMap("questionNo")
public String questionNo;
/**
* example:
* 1
*/
@NameInMap("questionPictureNum")
public Integer questionPictureNum;
/**
* example:
* 1
*/
@NameInMap("standardAnswerPictureNum")
public Integer standardAnswerPictureNum;
/**
* example:
* 1
*/
@NameInMap("userAnswerPictureNum")
public Integer userAnswerPictureNum;
public static SaveStudentLearningDataRequestWrongQuestions build(java.util.Map map) throws Exception {
SaveStudentLearningDataRequestWrongQuestions self = new SaveStudentLearningDataRequestWrongQuestions();
return TeaModel.build(map, self);
}
public SaveStudentLearningDataRequestWrongQuestions setKnowledgePoints(java.util.List knowledgePoints) {
this.knowledgePoints = knowledgePoints;
return this;
}
public java.util.List getKnowledgePoints() {
return this.knowledgePoints;
}
public SaveStudentLearningDataRequestWrongQuestions setQuestionNo(String questionNo) {
this.questionNo = questionNo;
return this;
}
public String getQuestionNo() {
return this.questionNo;
}
public SaveStudentLearningDataRequestWrongQuestions setQuestionPictureNum(Integer questionPictureNum) {
this.questionPictureNum = questionPictureNum;
return this;
}
public Integer getQuestionPictureNum() {
return this.questionPictureNum;
}
public SaveStudentLearningDataRequestWrongQuestions setStandardAnswerPictureNum(Integer standardAnswerPictureNum) {
this.standardAnswerPictureNum = standardAnswerPictureNum;
return this;
}
public Integer getStandardAnswerPictureNum() {
return this.standardAnswerPictureNum;
}
public SaveStudentLearningDataRequestWrongQuestions setUserAnswerPictureNum(Integer userAnswerPictureNum) {
this.userAnswerPictureNum = userAnswerPictureNum;
return this;
}
public Integer getUserAnswerPictureNum() {
return this.userAnswerPictureNum;
}
}
}