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.
32 lines
527 B
32 lines
527 B
5 years ago
|
package xyz.wbsite.dbtool.javafx.po;
|
||
|
|
||
|
public class DocRsp {
|
||
|
private String name;
|
||
|
private String type;
|
||
|
private String note;
|
||
|
|
||
|
public String getName() {
|
||
|
return name;
|
||
|
}
|
||
|
|
||
|
public void setName(String name) {
|
||
|
this.name = name;
|
||
|
}
|
||
|
|
||
|
public String getType() {
|
||
|
return type;
|
||
|
}
|
||
|
|
||
|
public void setType(String type) {
|
||
|
this.type = type;
|
||
|
}
|
||
|
|
||
|
public String getNote() {
|
||
|
return note;
|
||
|
}
|
||
|
|
||
|
public void setNote(String note) {
|
||
|
this.note = note;
|
||
|
}
|
||
|
}
|