|
|
|
|
|
package com.sztzjy.linkCommerce.entity;
|
|
|
|
|
|
|
|
|
|
|
|
import com.sztzjy.linkCommerce.entity.dto.StuMachineLearningInfoDTO;
|
|
|
|
|
|
import com.sztzjy.linkCommerce.entity.dto.StuMachineLearningInfoDTO;
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 实验实训根据模块存储
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author whb
|
|
|
|
|
|
* stu_machine_learning
|
|
|
|
|
|
*/
|
|
|
|
|
|
@Data
|
|
|
|
|
|
public class StuMachineLearning {
|
|
|
|
|
|
@ApiModelProperty("id")
|
|
|
|
|
|
private Integer id;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("正确次数")
|
|
|
|
|
|
private Integer successNumber;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("用户ID")
|
|
|
|
|
|
private String userId;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("提交状态(-1 未提交 1已提交)")
|
|
|
|
|
|
private Integer subState;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("归属模块(小模块)")
|
|
|
|
|
|
private String module;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("步骤1提交状态(-1 未提交 1已提交)")
|
|
|
|
|
|
private Integer oneSubState;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("步骤2提交状态(-1 未提交 1已提交)")
|
|
|
|
|
|
private Integer twoSubState;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("步骤3提交状态(-1 未提交 1已提交)")
|
|
|
|
|
|
private Integer threeSubState;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("步骤4提交状态(-1 未提交 1已提交)")
|
|
|
|
|
|
private Integer fourSubState;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("步骤5提交状态(-1 未提交 1已提交)")
|
|
|
|
|
|
private Integer fiveSubState;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("步骤6提交状态(-1 未提交 1已提交)")
|
|
|
|
|
|
private Integer sixSubState;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("步骤7提交状态(-1 未提交 1已提交)")
|
|
|
|
|
|
private Integer sevenSubState;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("创建时间")
|
|
|
|
|
|
private Date createTime;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("更新时间")
|
|
|
|
|
|
private Date updateTime;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("步骤一 a")
|
|
|
|
|
|
private String stepOneA;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("步骤一 b")
|
|
|
|
|
|
private String stepOneB;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("步骤一 c")
|
|
|
|
|
|
private String stepOneC;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("步骤一 d")
|
|
|
|
|
|
private String stepOneD;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("4")
|
|
|
|
|
|
private String stepTwoA;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("5")
|
|
|
|
|
|
private String stepTwoB;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("6")
|
|
|
|
|
|
private String stepTwoC;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("7")
|
|
|
|
|
|
private String stepThreeA;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("8")
|
|
|
|
|
|
private String stepThreeB;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("9")
|
|
|
|
|
|
private String stepThreeC;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("10")
|
|
|
|
|
|
private String stepThreeD;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("11")
|
|
|
|
|
|
private String stepFourA;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("12")
|
|
|
|
|
|
private String stepFourB;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("13")
|
|
|
|
|
|
private String stepFourC;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("14")
|
|
|
|
|
|
private String stepFourD;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("15")
|
|
|
|
|
|
private String stepFiveA;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("16")
|
|
|
|
|
|
private String stepFiveB;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("17")
|
|
|
|
|
|
private String stepFiveC;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("18")
|
|
|
|
|
|
private String stepFiveD;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("19")
|
|
|
|
|
|
private String stepSixA;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("20")
|
|
|
|
|
|
private String stepSixB;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("21")
|
|
|
|
|
|
private String stepSixC;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("22")
|
|
|
|
|
|
private String stepSixD;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("23")
|
|
|
|
|
|
private String stepSevenA;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("24")
|
|
|
|
|
|
private String stepSevenB;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("25")
|
|
|
|
|
|
private String stepSevenC;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("26")
|
|
|
|
|
|
private String stepSevenD;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("27")
|
|
|
|
|
|
private String stepEightA;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("28")
|
|
|
|
|
|
private String stepEightB;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("29")
|
|
|
|
|
|
private String stepEightC;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("30")
|
|
|
|
|
|
private String stepEightD;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("31")
|
|
|
|
|
|
private String stepNineA;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("32")
|
|
|
|
|
|
private String stepNineB;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("33")
|
|
|
|
|
|
private String stepNineC;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("34")
|
|
|
|
|
|
private String stepNineD;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("35")
|
|
|
|
|
|
private String stepTenA;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("36")
|
|
|
|
|
|
private String stepTenB;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("37")
|
|
|
|
|
|
private String stepTenC;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("38")
|
|
|
|
|
|
private String stepTenD;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("39")
|
|
|
|
|
|
private String stepElevenA;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("40")
|
|
|
|
|
|
private String stepElevenB;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("41")
|
|
|
|
|
|
private String stepElevenC;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("错误字段")
|
|
|
|
|
|
private String errorField;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("34")
|
|
|
|
|
|
private String stepNew;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("35")
|
|
|
|
|
|
private String stepNewOne;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("36")
|
|
|
|
|
|
private String stepNewTwo;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("37")
|
|
|
|
|
|
private String stepNewThree;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("38")
|
|
|
|
|
|
private String stepNewFive;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("39")
|
|
|
|
|
|
private String stepNewSix;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("40")
|
|
|
|
|
|
private String stepNewNine;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("41")
|
|
|
|
|
|
private String stepNewEight;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("35")
|
|
|
|
|
|
private String stepNewTen;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("36")
|
|
|
|
|
|
private String stepNewEleven;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("37")
|
|
|
|
|
|
private String stepNewShier;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("38")
|
|
|
|
|
|
private String stepNewShisan;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("39")
|
|
|
|
|
|
private String stepNewShisi;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("40")
|
|
|
|
|
|
private String stepNewShiwu;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("41")
|
|
|
|
|
|
private String stepNewShiliu;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("活跃用户分析")
|
|
|
|
|
|
private String activeUserAnalysis;
|
|
|
|
|
|
private List<StuMachineLearningInfoDTO> stuMachineLearningInfoDTOList;
|
|
|
|
|
|
private String stepechartlist1;
|
|
|
|
|
|
|
|
|
|
|
|
private String stepechartlist2;
|
|
|
|
|
|
|
|
|
|
|
|
private String stepechartlist3;
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getId() {
|
|
|
|
|
|
return id;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setId(Integer id) {
|
|
|
|
|
|
this.id = id;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getSuccessNumber() {
|
|
|
|
|
|
return successNumber;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSuccessNumber(Integer successNumber) {
|
|
|
|
|
|
this.successNumber = successNumber;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getUserId() {
|
|
|
|
|
|
return userId;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setUserId(String userId) {
|
|
|
|
|
|
this.userId = userId == null ? null : userId.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getSubState() {
|
|
|
|
|
|
return subState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSubState(Integer subState) {
|
|
|
|
|
|
this.subState = subState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getModule() {
|
|
|
|
|
|
return module;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setModule(String module) {
|
|
|
|
|
|
this.module = module == null ? null : module.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getOneSubState() {
|
|
|
|
|
|
return oneSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setOneSubState(Integer oneSubState) {
|
|
|
|
|
|
this.oneSubState = oneSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getTwoSubState() {
|
|
|
|
|
|
return twoSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setTwoSubState(Integer twoSubState) {
|
|
|
|
|
|
this.twoSubState = twoSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getThreeSubState() {
|
|
|
|
|
|
return threeSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setThreeSubState(Integer threeSubState) {
|
|
|
|
|
|
this.threeSubState = threeSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getFourSubState() {
|
|
|
|
|
|
return fourSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setFourSubState(Integer fourSubState) {
|
|
|
|
|
|
this.fourSubState = fourSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getFiveSubState() {
|
|
|
|
|
|
return fiveSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setFiveSubState(Integer fiveSubState) {
|
|
|
|
|
|
this.fiveSubState = fiveSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getSixSubState() {
|
|
|
|
|
|
return sixSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSixSubState(Integer sixSubState) {
|
|
|
|
|
|
this.sixSubState = sixSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getSevenSubState() {
|
|
|
|
|
|
return sevenSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSevenSubState(Integer sevenSubState) {
|
|
|
|
|
|
this.sevenSubState = sevenSubState;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepOneA() {
|
|
|
|
|
|
return stepOneA;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepOneA(String stepOneA) {
|
|
|
|
|
|
this.stepOneA = stepOneA == null ? null : stepOneA.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepOneB() {
|
|
|
|
|
|
return stepOneB;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepOneB(String stepOneB) {
|
|
|
|
|
|
this.stepOneB = stepOneB == null ? null : stepOneB.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepOneC() {
|
|
|
|
|
|
return stepOneC;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepOneC(String stepOneC) {
|
|
|
|
|
|
this.stepOneC = stepOneC == null ? null : stepOneC.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepOneD() {
|
|
|
|
|
|
return stepOneD;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepOneD(String stepOneD) {
|
|
|
|
|
|
this.stepOneD = stepOneD == null ? null : stepOneD.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepTwoA() {
|
|
|
|
|
|
return stepTwoA;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepTwoA(String stepTwoA) {
|
|
|
|
|
|
this.stepTwoA = stepTwoA == null ? null : stepTwoA.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepTwoB() {
|
|
|
|
|
|
return stepTwoB;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepTwoB(String stepTwoB) {
|
|
|
|
|
|
this.stepTwoB = stepTwoB == null ? null : stepTwoB.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepTwoC() {
|
|
|
|
|
|
return stepTwoC;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepTwoC(String stepTwoC) {
|
|
|
|
|
|
this.stepTwoC = stepTwoC == null ? null : stepTwoC.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepThreeA() {
|
|
|
|
|
|
return stepThreeA;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepThreeA(String stepThreeA) {
|
|
|
|
|
|
this.stepThreeA = stepThreeA == null ? null : stepThreeA.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepThreeB() {
|
|
|
|
|
|
return stepThreeB;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepThreeB(String stepThreeB) {
|
|
|
|
|
|
this.stepThreeB = stepThreeB == null ? null : stepThreeB.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepThreeC() {
|
|
|
|
|
|
return stepThreeC;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepThreeC(String stepThreeC) {
|
|
|
|
|
|
this.stepThreeC = stepThreeC == null ? null : stepThreeC.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepThreeD() {
|
|
|
|
|
|
return stepThreeD;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepThreeD(String stepThreeD) {
|
|
|
|
|
|
this.stepThreeD = stepThreeD == null ? null : stepThreeD.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepFourA() {
|
|
|
|
|
|
return stepFourA;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepFourA(String stepFourA) {
|
|
|
|
|
|
this.stepFourA = stepFourA == null ? null : stepFourA.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepFourB() {
|
|
|
|
|
|
return stepFourB;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepFourB(String stepFourB) {
|
|
|
|
|
|
this.stepFourB = stepFourB == null ? null : stepFourB.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepFourC() {
|
|
|
|
|
|
return stepFourC;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepFourC(String stepFourC) {
|
|
|
|
|
|
this.stepFourC = stepFourC == null ? null : stepFourC.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepFourD() {
|
|
|
|
|
|
return stepFourD;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepFourD(String stepFourD) {
|
|
|
|
|
|
this.stepFourD = stepFourD == null ? null : stepFourD.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepFiveA() {
|
|
|
|
|
|
return stepFiveA;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepFiveA(String stepFiveA) {
|
|
|
|
|
|
this.stepFiveA = stepFiveA == null ? null : stepFiveA.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepFiveB() {
|
|
|
|
|
|
return stepFiveB;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepFiveB(String stepFiveB) {
|
|
|
|
|
|
this.stepFiveB = stepFiveB == null ? null : stepFiveB.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepFiveC() {
|
|
|
|
|
|
return stepFiveC;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepFiveC(String stepFiveC) {
|
|
|
|
|
|
this.stepFiveC = stepFiveC == null ? null : stepFiveC.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepFiveD() {
|
|
|
|
|
|
return stepFiveD;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepFiveD(String stepFiveD) {
|
|
|
|
|
|
this.stepFiveD = stepFiveD == null ? null : stepFiveD.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepSixA() {
|
|
|
|
|
|
return stepSixA;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepSixA(String stepSixA) {
|
|
|
|
|
|
this.stepSixA = stepSixA == null ? null : stepSixA.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepSixB() {
|
|
|
|
|
|
return stepSixB;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepSixB(String stepSixB) {
|
|
|
|
|
|
this.stepSixB = stepSixB == null ? null : stepSixB.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepSixC() {
|
|
|
|
|
|
return stepSixC;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepSixC(String stepSixC) {
|
|
|
|
|
|
this.stepSixC = stepSixC == null ? null : stepSixC.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepSixD() {
|
|
|
|
|
|
return stepSixD;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepSixD(String stepSixD) {
|
|
|
|
|
|
this.stepSixD = stepSixD == null ? null : stepSixD.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepSevenA() {
|
|
|
|
|
|
return stepSevenA;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepSevenA(String stepSevenA) {
|
|
|
|
|
|
this.stepSevenA = stepSevenA == null ? null : stepSevenA.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepSevenB() {
|
|
|
|
|
|
return stepSevenB;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepSevenB(String stepSevenB) {
|
|
|
|
|
|
this.stepSevenB = stepSevenB == null ? null : stepSevenB.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepSevenC() {
|
|
|
|
|
|
return stepSevenC;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepSevenC(String stepSevenC) {
|
|
|
|
|
|
this.stepSevenC = stepSevenC == null ? null : stepSevenC.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepSevenD() {
|
|
|
|
|
|
return stepSevenD;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepSevenD(String stepSevenD) {
|
|
|
|
|
|
this.stepSevenD = stepSevenD == null ? null : stepSevenD.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepEightA() {
|
|
|
|
|
|
return stepEightA;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepEightA(String stepEightA) {
|
|
|
|
|
|
this.stepEightA = stepEightA == null ? null : stepEightA.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepEightB() {
|
|
|
|
|
|
return stepEightB;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepEightB(String stepEightB) {
|
|
|
|
|
|
this.stepEightB = stepEightB == null ? null : stepEightB.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepEightC() {
|
|
|
|
|
|
return stepEightC;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepEightC(String stepEightC) {
|
|
|
|
|
|
this.stepEightC = stepEightC == null ? null : stepEightC.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepEightD() {
|
|
|
|
|
|
return stepEightD;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepEightD(String stepEightD) {
|
|
|
|
|
|
this.stepEightD = stepEightD == null ? null : stepEightD.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNineA() {
|
|
|
|
|
|
return stepNineA;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNineA(String stepNineA) {
|
|
|
|
|
|
this.stepNineA = stepNineA == null ? null : stepNineA.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNineB() {
|
|
|
|
|
|
return stepNineB;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNineB(String stepNineB) {
|
|
|
|
|
|
this.stepNineB = stepNineB == null ? null : stepNineB.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNineC() {
|
|
|
|
|
|
return stepNineC;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNineC(String stepNineC) {
|
|
|
|
|
|
this.stepNineC = stepNineC == null ? null : stepNineC.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNineD() {
|
|
|
|
|
|
return stepNineD;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNineD(String stepNineD) {
|
|
|
|
|
|
this.stepNineD = stepNineD == null ? null : stepNineD.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepTenA() {
|
|
|
|
|
|
return stepTenA;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepTenA(String stepTenA) {
|
|
|
|
|
|
this.stepTenA = stepTenA == null ? null : stepTenA.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepTenB() {
|
|
|
|
|
|
return stepTenB;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepTenB(String stepTenB) {
|
|
|
|
|
|
this.stepTenB = stepTenB == null ? null : stepTenB.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepTenC() {
|
|
|
|
|
|
return stepTenC;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepTenC(String stepTenC) {
|
|
|
|
|
|
this.stepTenC = stepTenC == null ? null : stepTenC.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepTenD() {
|
|
|
|
|
|
return stepTenD;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepTenD(String stepTenD) {
|
|
|
|
|
|
this.stepTenD = stepTenD == null ? null : stepTenD.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepElevenA() {
|
|
|
|
|
|
return stepElevenA;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepElevenA(String stepElevenA) {
|
|
|
|
|
|
this.stepElevenA = stepElevenA == null ? null : stepElevenA.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepElevenB() {
|
|
|
|
|
|
return stepElevenB;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepElevenB(String stepElevenB) {
|
|
|
|
|
|
this.stepElevenB = stepElevenB == null ? null : stepElevenB.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepElevenC() {
|
|
|
|
|
|
return stepElevenC;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepElevenC(String stepElevenC) {
|
|
|
|
|
|
this.stepElevenC = stepElevenC == null ? null : stepElevenC.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getErrorField() {
|
|
|
|
|
|
return errorField;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setErrorField(String errorField) {
|
|
|
|
|
|
this.errorField = errorField == null ? null : errorField.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNew() {
|
|
|
|
|
|
return stepNew;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNew(String stepNew) {
|
|
|
|
|
|
this.stepNew = stepNew == null ? null : stepNew.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewOne() {
|
|
|
|
|
|
return stepNewOne;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewOne(String stepNewOne) {
|
|
|
|
|
|
this.stepNewOne = stepNewOne == null ? null : stepNewOne.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewTwo() {
|
|
|
|
|
|
return stepNewTwo;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewTwo(String stepNewTwo) {
|
|
|
|
|
|
this.stepNewTwo = stepNewTwo == null ? null : stepNewTwo.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewThree() {
|
|
|
|
|
|
return stepNewThree;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewThree(String stepNewThree) {
|
|
|
|
|
|
this.stepNewThree = stepNewThree == null ? null : stepNewThree.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewFive() {
|
|
|
|
|
|
return stepNewFive;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewFive(String stepNewFive) {
|
|
|
|
|
|
this.stepNewFive = stepNewFive == null ? null : stepNewFive.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewSix() {
|
|
|
|
|
|
return stepNewSix;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewSix(String stepNewSix) {
|
|
|
|
|
|
this.stepNewSix = stepNewSix == null ? null : stepNewSix.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewNine() {
|
|
|
|
|
|
return stepNewNine;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewNine(String stepNewNine) {
|
|
|
|
|
|
this.stepNewNine = stepNewNine == null ? null : stepNewNine.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewEight() {
|
|
|
|
|
|
return stepNewEight;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewEight(String stepNewEight) {
|
|
|
|
|
|
this.stepNewEight = stepNewEight == null ? null : stepNewEight.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewTen() {
|
|
|
|
|
|
return stepNewTen;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewTen(String stepNewTen) {
|
|
|
|
|
|
this.stepNewTen = stepNewTen == null ? null : stepNewTen.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewEleven() {
|
|
|
|
|
|
return stepNewEleven;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewEleven(String stepNewEleven) {
|
|
|
|
|
|
this.stepNewEleven = stepNewEleven == null ? null : stepNewEleven.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewShier() {
|
|
|
|
|
|
return stepNewShier;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewShier(String stepNewShier) {
|
|
|
|
|
|
this.stepNewShier = stepNewShier == null ? null : stepNewShier.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewShisan() {
|
|
|
|
|
|
return stepNewShisan;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewShisan(String stepNewShisan) {
|
|
|
|
|
|
this.stepNewShisan = stepNewShisan == null ? null : stepNewShisan.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewShisi() {
|
|
|
|
|
|
return stepNewShisi;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewShisi(String stepNewShisi) {
|
|
|
|
|
|
this.stepNewShisi = stepNewShisi == null ? null : stepNewShisi.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewShiwu() {
|
|
|
|
|
|
return stepNewShiwu;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewShiwu(String stepNewShiwu) {
|
|
|
|
|
|
this.stepNewShiwu = stepNewShiwu == null ? null : stepNewShiwu.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepNewShiliu() {
|
|
|
|
|
|
return stepNewShiliu;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepNewShiliu(String stepNewShiliu) {
|
|
|
|
|
|
this.stepNewShiliu = stepNewShiliu == null ? null : stepNewShiliu.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getActiveUserAnalysis() {
|
|
|
|
|
|
return activeUserAnalysis;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setActiveUserAnalysis(String activeUserAnalysis) {
|
|
|
|
|
|
this.activeUserAnalysis = activeUserAnalysis == null ? null : activeUserAnalysis.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepechartlist1() {
|
|
|
|
|
|
return stepechartlist1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepechartlist1(String stepechartlist1) {
|
|
|
|
|
|
this.stepechartlist1 = stepechartlist1 == null ? null : stepechartlist1.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepechartlist2() {
|
|
|
|
|
|
return stepechartlist2;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepechartlist2(String stepechartlist2) {
|
|
|
|
|
|
this.stepechartlist2 = stepechartlist2 == null ? null : stepechartlist2.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getStepechartlist3() {
|
|
|
|
|
|
return stepechartlist3;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setStepechartlist3(String stepechartlist3) {
|
|
|
|
|
|
this.stepechartlist3 = stepechartlist3 == null ? null : stepechartlist3.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|