|
|
@@ -1,122 +0,0 @@
|
|
|
-package cn.seecoder.bok.common.vo;
|
|
|
-
|
|
|
-import java.util.Date;
|
|
|
-import java.util.HashMap;
|
|
|
-import java.util.List;
|
|
|
-
|
|
|
-/**
|
|
|
- * @author Kunduin
|
|
|
- */
|
|
|
-public class CodeQuestionVO {
|
|
|
-
|
|
|
- String id;
|
|
|
- private List<String> languages;
|
|
|
- private String title;
|
|
|
-
|
|
|
- private String description;
|
|
|
- private String inputDescription;
|
|
|
- private String outputDescription;
|
|
|
-
|
|
|
- private Integer limitedMemory;
|
|
|
- private Integer limitMillSeconds;
|
|
|
-
|
|
|
- private HashMap<String, String> inputOutputMapping;
|
|
|
-
|
|
|
- private Date lastModifiedAt;
|
|
|
-
|
|
|
- public String getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(String id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public List<String> getLanguages() {
|
|
|
- return languages;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLanguages(List<String> languages) {
|
|
|
- this.languages = languages;
|
|
|
- }
|
|
|
-
|
|
|
- public String getTitle() {
|
|
|
- return title;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTitle(String title) {
|
|
|
- this.title = title;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDescription() {
|
|
|
- return description;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDescription(String description) {
|
|
|
- this.description = description;
|
|
|
- }
|
|
|
-
|
|
|
- public String getInputDescription() {
|
|
|
- return inputDescription;
|
|
|
- }
|
|
|
-
|
|
|
- public void setInputDescription(String inputDescription) {
|
|
|
- this.inputDescription = inputDescription;
|
|
|
- }
|
|
|
-
|
|
|
- public String getOutputDescription() {
|
|
|
- return outputDescription;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOutputDescription(String outputDescription) {
|
|
|
- this.outputDescription = outputDescription;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getLimitedMemory() {
|
|
|
- return limitedMemory;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLimitedMemory(int limitedMemory) {
|
|
|
- this.limitedMemory = limitedMemory;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getLimitMillSeconds() {
|
|
|
- return limitMillSeconds;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLimitMillSeconds(int limitMillSeconds) {
|
|
|
- this.limitMillSeconds = limitMillSeconds;
|
|
|
- }
|
|
|
-
|
|
|
- public HashMap<String, String> getInputOutputMapping() {
|
|
|
- return inputOutputMapping;
|
|
|
- }
|
|
|
-
|
|
|
- public void setInputOutputMapping(HashMap<String, String> inputOutputMapping) {
|
|
|
- this.inputOutputMapping = inputOutputMapping;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getLastModifiedAt() {
|
|
|
- return lastModifiedAt;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLastModifiedAt(Date lastModifiedAt) {
|
|
|
- this.lastModifiedAt = lastModifiedAt;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "CodeQuestionVO{" +
|
|
|
- "id='" + id + '\'' +
|
|
|
- ", languages=" + languages +
|
|
|
- ", title='" + title + '\'' +
|
|
|
- ", description='" + description + '\'' +
|
|
|
- ", inputDescription='" + inputDescription + '\'' +
|
|
|
- ", outputDescription='" + outputDescription + '\'' +
|
|
|
- ", limitedMemory=" + limitedMemory +
|
|
|
- ", limitMillSeconds=" + limitMillSeconds +
|
|
|
- ", inputOutputMapping=" + inputOutputMapping +
|
|
|
- ", lastModifiedAt=" + lastModifiedAt +
|
|
|
- '}';
|
|
|
- }
|
|
|
-}
|