You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
269 lines
8.5 KiB
269 lines
8.5 KiB
5 years ago
|
package com.yipin.liuwanr.entity;
|
||
|
|
||
5 years ago
|
import io.swagger.annotations.ApiModel;
|
||
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
|
||
5 years ago
|
/**
|
||
|
* 项目管理
|
||
|
*
|
||
5 years ago
|
* @author 86151
|
||
5 years ago
|
*/
|
||
5 years ago
|
@ApiModel(value = "Project_Management对象", description = "项目管理对象Project_Management")
|
||
4 years ago
|
public class ProjectManagement {
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(value = "项目主键ID,编辑项目需要传,新增项目不需要传", name = "projectId", example = "223")
|
||
5 years ago
|
private Integer projectId;// 项目主键ID
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(value = "项目名称", name = "projectName", example = "python教学项目", required = true)
|
||
|
private String projectName;// 项目名称
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(value = "项目权限(0、练习 1、考核 2、竞赛)", name = "projectPermissions", example = "0", required = true)
|
||
|
private Integer projectPermissions;// 项目权限(0、练习 1、考核 2、竞赛)
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(value = "创建人(0、系统 1、老师)", name = "founder", example = "0", required = true)
|
||
|
private Integer founder;// 创建人(0、系统 1、老师)
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(hidden = true)
|
||
|
private String creationTime;// 创建时间
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(value = "状态(0、草稿箱 1、已发布)", name = "state", example = "0", required = true)
|
||
|
private Integer state;// 状态(0、草稿箱 1、已发布)
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(value = "实验目标", name = "experimentalGoal", example = "学会十以内加减法", required = true)
|
||
|
private String experimentalGoal;// 实验目标
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(value = "案例描述", name = "caseDescription", example = "一加一等于二", required = true)
|
||
|
private String caseDescription; // 案例描述
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(hidden = true)
|
||
|
private String experimentTask;// 实验任务
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(hidden = true)
|
||
|
private String experimentalDataId;// 绑定实验数据ID
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(value = "实验提示", name = "experimentSuggests", example = "一加一等于二", required = true)
|
||
|
private String experimentSuggests; // 实验提示
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(value = "绑定服务配置ID", name = "systemId", example = "1", required = true)
|
||
|
private Integer systemId;// 绑定服务配置ID
|
||
5 years ago
|
|
||
4 years ago
|
@ApiModelProperty(value = "知识点", name = "knowledgePoints", example = "一加一等于二", required = true)
|
||
|
private String knowledgePoints; // 知识点
|
||
|
|
||
|
@ApiModelProperty(value = "实验介绍", name = "experimentIntroduction", example = "一加一等于二", required = true)
|
||
|
private String experimentIntroduction; // 实验介绍
|
||
|
|
||
5 years ago
|
@ApiModelProperty(hidden = true)
|
||
|
private Integer isdel;
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(hidden = true)
|
||
|
private Integer isShow;
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(value = "是否启用实验数据(0启用 1不启用)", name = "isstartexperimental", example = "0", required = true)
|
||
|
private Integer isstartexperimental;//是否启用实验数据(0启用 1不启用)
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(value = "是否启用实验提示(0启用 1不启用)", name = "isstartexperimentSuggests", example = "0", required = true)
|
||
|
private Integer isstartexperimentSuggests;
|
||
5 years ago
|
|
||
5 years ago
|
@ApiModelProperty(value = "用户ID", name = "userId", example = "4", required = true)
|
||
|
private Integer userId;
|
||
5 years ago
|
|
||
4 years ago
|
@ApiModelProperty(value = "知识点是否启用(0、启用 1、不展示)", name = "knowledgePointsIsEnable", example = "0", required = true)
|
||
|
private Integer knowledgePointsIsEnable;
|
||
|
|
||
|
@ApiModelProperty(value = "实验介绍是否启用(0、启用 1、不展示)", name = "userId", example = "0", required = true)
|
||
|
private Integer experimentIntroductionIsEnable;
|
||
|
|
||
|
public Integer getKnowledgePointsIsEnable() {
|
||
|
return knowledgePointsIsEnable;
|
||
|
}
|
||
|
|
||
|
public void setKnowledgePointsIsEnable(Integer knowledgePointsIsEnable) {
|
||
|
this.knowledgePointsIsEnable = knowledgePointsIsEnable;
|
||
|
}
|
||
|
|
||
|
public Integer getExperimentIntroductionIsEnable() {
|
||
|
return experimentIntroductionIsEnable;
|
||
|
}
|
||
|
|
||
|
public void setExperimentIntroductionIsEnable(Integer experimentIntroductionIsEnable) {
|
||
|
this.experimentIntroductionIsEnable = experimentIntroductionIsEnable;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public Integer getUserId() {
|
||
|
return userId;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setUserId(Integer userId) {
|
||
|
this.userId = userId;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public Integer getIsstartexperimental() {
|
||
|
return isstartexperimental;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setIsstartexperimental(Integer isstartexperimental) {
|
||
|
this.isstartexperimental = isstartexperimental;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public Integer getIsstartexperimentSuggests() {
|
||
|
return isstartexperimentSuggests;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setIsstartexperimentSuggests(Integer isstartexperimentSuggests) {
|
||
|
this.isstartexperimentSuggests = isstartexperimentSuggests;
|
||
|
}
|
||
5 years ago
|
|
||
4 years ago
|
public String getKnowledgePoints() {
|
||
|
return knowledgePoints;
|
||
|
}
|
||
|
|
||
|
public void setKnowledgePoints(String knowledgePoints) {
|
||
|
this.knowledgePoints = knowledgePoints;
|
||
|
}
|
||
|
|
||
|
public String getExperimentIntroduction() {
|
||
|
return experimentIntroduction;
|
||
|
}
|
||
|
|
||
|
public void setExperimentIntroduction(String experimentIntroduction) {
|
||
|
this.experimentIntroduction = experimentIntroduction;
|
||
|
}
|
||
|
|
||
5 years ago
|
public Integer getProjectId() {
|
||
|
return projectId;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setProjectId(Integer projectId) {
|
||
|
this.projectId = projectId;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public String getProjectName() {
|
||
|
return projectName;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setProjectName(String projectName) {
|
||
|
this.projectName = projectName;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public Integer getProjectPermissions() {
|
||
|
return projectPermissions;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setProjectPermissions(Integer projectPermissions) {
|
||
|
this.projectPermissions = projectPermissions;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public Integer getFounder() {
|
||
|
return founder;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setFounder(Integer founder) {
|
||
|
this.founder = founder;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public String getCreationTime() {
|
||
|
return creationTime;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setCreationTime(String creationTime) {
|
||
|
this.creationTime = creationTime;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public Integer getState() {
|
||
|
return state;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setState(Integer state) {
|
||
|
this.state = state;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public String getExperimentalGoal() {
|
||
|
return experimentalGoal;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setExperimentalGoal(String experimentalGoal) {
|
||
|
this.experimentalGoal = experimentalGoal;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public String getCaseDescription() {
|
||
|
return caseDescription;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setCaseDescription(String caseDescription) {
|
||
|
this.caseDescription = caseDescription;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public String getExperimentTask() {
|
||
|
return experimentTask;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setExperimentTask(String experimentTask) {
|
||
|
this.experimentTask = experimentTask;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public Integer getIsdel() {
|
||
|
return isdel;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setIsdel(Integer isdel) {
|
||
|
this.isdel = isdel;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public Integer getIsShow() {
|
||
|
return isShow;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setIsShow(Integer isShow) {
|
||
|
this.isShow = isShow;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public String getExperimentalDataId() {
|
||
|
return experimentalDataId;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setExperimentalDataId(String experimentalDataId) {
|
||
|
this.experimentalDataId = experimentalDataId;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public String getExperimentSuggests() {
|
||
|
return experimentSuggests;
|
||
|
}
|
||
5 years ago
|
|
||
|
|
||
5 years ago
|
public void setExperimentSuggests(String experimentSuggests) {
|
||
|
this.experimentSuggests = experimentSuggests;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public Integer getSystemId() {
|
||
|
return systemId;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
public void setSystemId(Integer systemId) {
|
||
|
this.systemId = systemId;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
@Override
|
||
|
public String toString() {
|
||
4 years ago
|
return "ProjectManagement{" +
|
||
5 years ago
|
"projectId=" + projectId +
|
||
|
", projectName='" + projectName + '\'' +
|
||
|
", projectPermissions=" + projectPermissions +
|
||
|
", founder=" + founder +
|
||
|
", creationTime='" + creationTime + '\'' +
|
||
|
", state=" + state +
|
||
|
", experimentalGoal='" + experimentalGoal + '\'' +
|
||
|
", caseDescription='" + caseDescription + '\'' +
|
||
|
", experimentTask='" + experimentTask + '\'' +
|
||
|
", experimentalDataId='" + experimentalDataId + '\'' +
|
||
|
", experimentSuggests='" + experimentSuggests + '\'' +
|
||
|
", systemId=" + systemId +
|
||
|
", isdel=" + isdel +
|
||
|
", isShow=" + isShow +
|
||
|
", isstartexperimental=" + isstartexperimental +
|
||
|
", isstartexperimentSuggests=" + isstartexperimentSuggests +
|
||
|
", userId=" + userId +
|
||
|
'}';
|
||
|
}
|
||
5 years ago
|
}
|