JUDGER_AND_CLIENT/Common/src/persistence/oj_beans/ProblemTestCaseBean.java

66 lines
1.1 KiB
Java
Raw Normal View History

2024-01-12 20:48:35 +08:00
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package persistence.oj_beans;
/**
*
* @author Administrator
*/
public class ProblemTestCaseBean {
Integer id;
Integer problemId;
String input;
String output="";
// public ProblemTestCaseBean(String input, String output) {
// this.id = 0;
// this.problemId = 0;
// this.input = input;
// this.output = output;
// }
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getProblemId() {
return problemId;
}
public void setProblemId(Integer problemId) {
this.problemId = problemId;
}
public String getInput() {
return input;
}
public void setInput(String input) {
this.input = input;
}
public String getOutput() {
return output;
}
public void setOutput(String output) {
this.output = output;
}
}