parent
b8e8868747
commit
7c1ee361e0
5 changed files with 293 additions and 247 deletions
@ -1,93 +1,110 @@ |
|||||||
package com.yipin.liuwanr.entity; |
package com.yipin.liuwanr.entity; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
|
||||||
/** |
/** |
||||||
* 判分表 |
* 判分表 |
||||||
|
* "pooints": [{ |
||||||
|
* "judgmentPointsId": 184, |
||||||
|
* "judgmentPointsName": "列表——元素的修改 ", |
||||||
|
* "experimentalRequirements": "新学期开始,老师组织了学习小组,该学习小组有A,B,C,D五个学生\nList1=[''A'',''B'',''C'',''D'']\n列表元素-修改-请使用下标索引\n第三天上课,老师发现把E同学的名字打错了,应该T。请修改并打印本小组的全体学生", |
||||||
|
* "score": "100" |
||||||
|
* }], |
||||||
*/ |
*/ |
||||||
|
@ApiModel(value = "Judgment_Points对象", description = "判分点对象Judgment_Points") |
||||||
public class Judgment_Points { |
public class Judgment_Points { |
||||||
|
|
||||||
|
@ApiModelProperty(value = "判分点主键Id", name = "judgmentPointsId", example = "184", required = true) |
||||||
private Integer judgmentPointsId;// 判分点主键Id
|
private Integer judgmentPointsId;// 判分点主键Id
|
||||||
private String judgmentPointsName;// 判分点名称
|
@ApiModelProperty(value = "判分点名称", name = "judgmentPointsName", example = "列表——元素的修改", required = true) |
||||||
private String experimentalRequirements;//实验要求
|
private String judgmentPointsName;// 判分点名称
|
||||||
private String projectId;//绑定项目管理Id
|
@ApiModelProperty(value = "实验要求", name = "experimentalRequirements", example = "新学期开始,老师组织了学习小组,该学习小组有A,B,C,D五个学生\\nList1=[''A'',''B'',''C'',''D'']\\n列表元素-修改-请使用下标索引\\n第三天上课,老师发现把E同学的名字打错了,应该T。请修改并打印本小组的全体学生", required = true) |
||||||
private Integer judgmentPointsType;// 判分点类型(1、编程类 2、交易类 3、工具类 4、业务类)
|
private String experimentalRequirements;//实验要求
|
||||||
private Integer isdel;// 是否删除(0、未删除 1、已删除)
|
@ApiModelProperty(hidden = true) |
||||||
private Integer systemId; |
private String projectId;//绑定项目管理Id
|
||||||
private Integer userId; |
@ApiModelProperty(hidden = true) |
||||||
|
private Integer judgmentPointsType;// 判分点类型(1、编程类 2、交易类 3、工具类 4、业务类)
|
||||||
private Integer score;//判分点指标的分数
|
@ApiModelProperty(hidden = true) |
||||||
|
private Integer isdel;// 是否删除(0、未删除 1、已删除)
|
||||||
public Integer getSystemId() { |
@ApiModelProperty(hidden = true) |
||||||
return systemId; |
private Integer systemId; |
||||||
} |
@ApiModelProperty(hidden = true) |
||||||
|
private Integer userId; |
||||||
public void setSystemId(Integer systemId) { |
@ApiModelProperty(value = "判分点指标的分数", name = "score", example = "100", required = true) |
||||||
this.systemId = systemId; |
private Integer score;//判分点指标的分数
|
||||||
} |
|
||||||
|
public Integer getSystemId() { |
||||||
public Integer getUserId() { |
return systemId; |
||||||
return userId; |
} |
||||||
} |
|
||||||
|
public void setSystemId(Integer systemId) { |
||||||
public void setUserId(Integer userId) { |
this.systemId = systemId; |
||||||
this.userId = userId; |
} |
||||||
} |
|
||||||
|
public Integer getUserId() { |
||||||
public Integer getScore() { |
return userId; |
||||||
return score; |
} |
||||||
} |
|
||||||
|
public void setUserId(Integer userId) { |
||||||
public void setScore(Integer score) { |
this.userId = userId; |
||||||
this.score = score; |
} |
||||||
} |
|
||||||
|
public Integer getScore() { |
||||||
public Integer getJudgmentPointsId() { |
return score; |
||||||
return judgmentPointsId; |
} |
||||||
} |
|
||||||
|
public void setScore(Integer score) { |
||||||
public void setJudgmentPointsId(Integer judgmentPointsId) { |
this.score = score; |
||||||
this.judgmentPointsId = judgmentPointsId; |
} |
||||||
} |
|
||||||
|
public Integer getJudgmentPointsId() { |
||||||
public String getJudgmentPointsName() { |
return judgmentPointsId; |
||||||
return judgmentPointsName; |
} |
||||||
} |
|
||||||
|
public void setJudgmentPointsId(Integer judgmentPointsId) { |
||||||
public void setJudgmentPointsName(String judgmentPointsName) { |
this.judgmentPointsId = judgmentPointsId; |
||||||
this.judgmentPointsName = judgmentPointsName; |
} |
||||||
} |
|
||||||
|
public String getJudgmentPointsName() { |
||||||
public String getExperimentalRequirements() { |
return judgmentPointsName; |
||||||
return experimentalRequirements; |
} |
||||||
} |
|
||||||
|
public void setJudgmentPointsName(String judgmentPointsName) { |
||||||
public void setExperimentalRequirements(String experimentalRequirements) { |
this.judgmentPointsName = judgmentPointsName; |
||||||
this.experimentalRequirements = experimentalRequirements; |
} |
||||||
} |
|
||||||
|
public String getExperimentalRequirements() { |
||||||
public String getProjectId() { |
return experimentalRequirements; |
||||||
return projectId; |
} |
||||||
} |
|
||||||
|
public void setExperimentalRequirements(String experimentalRequirements) { |
||||||
public void setProjectId(String projectId) { |
this.experimentalRequirements = experimentalRequirements; |
||||||
this.projectId = projectId; |
} |
||||||
} |
|
||||||
|
public String getProjectId() { |
||||||
public Integer getJudgmentPointsType() { |
return projectId; |
||||||
return judgmentPointsType; |
} |
||||||
} |
|
||||||
|
public void setProjectId(String projectId) { |
||||||
public void setJudgmentPointsType(Integer judgmentPointsType) { |
this.projectId = projectId; |
||||||
this.judgmentPointsType = judgmentPointsType; |
} |
||||||
} |
|
||||||
|
public Integer getJudgmentPointsType() { |
||||||
public Integer getIsdel() { |
return judgmentPointsType; |
||||||
return isdel; |
} |
||||||
} |
|
||||||
|
public void setJudgmentPointsType(Integer judgmentPointsType) { |
||||||
public void setIsdel(Integer isdel) { |
this.judgmentPointsType = judgmentPointsType; |
||||||
this.isdel = isdel; |
} |
||||||
} |
|
||||||
|
public Integer getIsdel() { |
||||||
|
return isdel; |
||||||
|
} |
||||||
|
|
||||||
|
public void setIsdel(Integer isdel) { |
||||||
|
this.isdel = isdel; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
} |
} |
||||||
|
Loading…
Reference in new issue