You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

195 lines
4.5 KiB
Java

package com.sztzjy.linkCommerce.entity;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
public class StudentTrainingAnswer {
@ApiModelProperty("主键ID")
private String id;
@ApiModelProperty("学生用户ID")
private String studentUserId;
@ApiModelProperty("教学班ID")
private String teachingClassId;
@ApiModelProperty("实训任务模块ID")
private String taskId;
@ApiModelProperty("实训任务标识")
private String taskKey;
@ApiModelProperty("实训任务名称")
private String taskName;
@ApiModelProperty("步骤一答案")
private String step1Answer;
@ApiModelProperty("步骤二答案")
private String step2Answer;
@ApiModelProperty("步骤三答案")
private String step3Answer;
@ApiModelProperty("步骤四答案")
private String step4Answer;
@ApiModelProperty("当前步骤")
private Integer currentStep;
@ApiModelProperty("进度状态NOT_STARTED/IN_PROGRESS/COMPLETED")
private String progressStatus;
@ApiModelProperty("是否提交")
private Boolean submitted;
@ApiModelProperty("保存动作SAVE/SUBMIT/RESET")
private String saveAction;
@ApiModelProperty("提交时间")
private Date submitTime;
@ApiModelProperty("创建时间")
private Date createTime;
@ApiModelProperty("更新时间")
private Date updateTime;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public String getStudentUserId() {
return studentUserId;
}
public void setStudentUserId(String studentUserId) {
this.studentUserId = studentUserId == null ? null : studentUserId.trim();
}
public String getTeachingClassId() {
return teachingClassId;
}
public void setTeachingClassId(String teachingClassId) {
this.teachingClassId = teachingClassId == null ? null : teachingClassId.trim();
}
public String getTaskId() {
return taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId == null ? null : taskId.trim();
}
public String getTaskKey() {
return taskKey;
}
public void setTaskKey(String taskKey) {
this.taskKey = taskKey == null ? null : taskKey.trim();
}
public String getTaskName() {
return taskName;
}
public void setTaskName(String taskName) {
this.taskName = taskName == null ? null : taskName.trim();
}
public String getStep1Answer() {
return step1Answer;
}
public void setStep1Answer(String step1Answer) {
this.step1Answer = step1Answer == null ? null : step1Answer.trim();
}
public String getStep2Answer() {
return step2Answer;
}
public void setStep2Answer(String step2Answer) {
this.step2Answer = step2Answer == null ? null : step2Answer.trim();
}
public String getStep3Answer() {
return step3Answer;
}
public void setStep3Answer(String step3Answer) {
this.step3Answer = step3Answer == null ? null : step3Answer.trim();
}
public String getStep4Answer() {
return step4Answer;
}
public void setStep4Answer(String step4Answer) {
this.step4Answer = step4Answer == null ? null : step4Answer.trim();
}
public Integer getCurrentStep() {
return currentStep;
}
public void setCurrentStep(Integer currentStep) {
this.currentStep = currentStep;
}
public String getProgressStatus() {
return progressStatus;
}
public void setProgressStatus(String progressStatus) {
this.progressStatus = progressStatus == null ? null : progressStatus.trim();
}
public Boolean getSubmitted() {
return submitted;
}
public void setSubmitted(Boolean submitted) {
this.submitted = submitted;
}
public String getSaveAction() {
return saveAction;
}
public void setSaveAction(String saveAction) {
this.saveAction = saveAction == null ? null : saveAction.trim();
}
public Date getSubmitTime() {
return submitTime;
}
public void setSubmitTime(Date submitTime) {
this.submitTime = submitTime;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
}