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.
39 lines
771 B
39 lines
771 B
package com.dxhy.erp.entity;
|
|
|
|
public class Receivers {
|
|
private String receiver;
|
|
private String check;
|
|
private String drawer;
|
|
|
|
public Receivers() {
|
|
}
|
|
|
|
public String getReceiver() {
|
|
return this.receiver;
|
|
}
|
|
|
|
public void setReceiver(String receiver) {
|
|
this.receiver = receiver;
|
|
}
|
|
|
|
public String getCheck() {
|
|
return this.check;
|
|
}
|
|
|
|
public void setCheck(String check) {
|
|
this.check = check;
|
|
}
|
|
|
|
public String getDrawer() {
|
|
return this.drawer;
|
|
}
|
|
|
|
public void setDrawer(String drawer) {
|
|
this.drawer = drawer;
|
|
}
|
|
|
|
public String toString() {
|
|
return "Receiver [receiver=" + this.receiver + ", check=" + this.check + ", drawer=" + this.drawer + "]";
|
|
}
|
|
}
|
|
|
|
|