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.
27 lines
512 B
27 lines
512 B
package com.example;
|
|
|
|
public class Test {
|
|
private String id;
|
|
private String name,result;
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
public void setResult(String result) {
|
|
this.result = result;
|
|
}
|
|
public String getResult() {
|
|
return result;
|
|
}
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
} |