111 lines
2.3 KiB
Plaintext
111 lines
2.3 KiB
Plaintext
|
package th.co.muangthai.endrprint.model.bean.form;
|
||
|
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
import java.util.Date;
|
||
|
|
||
|
public class Endr900RequestForm implements Serializable {
|
||
|
|
||
|
|
||
|
String processid;
|
||
|
Date createddateFrom;//Ex. '2019-01-01'
|
||
|
Date createddateTo;//Ex. '2019-01-01'
|
||
|
Date enddateFrom;//Ex. 2019-01-01
|
||
|
Date enddateTo;//Ex. 2019-01-01
|
||
|
String outcome;
|
||
|
String ownergroup;
|
||
|
String textattribute3;
|
||
|
String textattribute7;
|
||
|
String textattribute9;
|
||
|
String acquiredby;
|
||
|
|
||
|
public String getProcessid() {
|
||
|
return processid;
|
||
|
}
|
||
|
|
||
|
public void setProcessid(String processid) {
|
||
|
this.processid = processid;
|
||
|
}
|
||
|
|
||
|
public Date getCreateddateFrom() {
|
||
|
return createddateFrom;
|
||
|
}
|
||
|
|
||
|
public void setCreateddateFrom(Date createddateFrom) {
|
||
|
this.createddateFrom = createddateFrom;
|
||
|
}
|
||
|
|
||
|
public Date getCreateddateTo() {
|
||
|
return createddateTo;
|
||
|
}
|
||
|
|
||
|
public void setCreateddateTo(Date createddateTo) {
|
||
|
this.createddateTo = createddateTo;
|
||
|
}
|
||
|
|
||
|
public Date getEnddateFrom() {
|
||
|
return enddateFrom;
|
||
|
}
|
||
|
|
||
|
public void setEnddateFrom(Date enddateFrom) {
|
||
|
this.enddateFrom = enddateFrom;
|
||
|
}
|
||
|
|
||
|
public Date getEnddateTo() {
|
||
|
return enddateTo;
|
||
|
}
|
||
|
|
||
|
public void setEnddateTo(Date enddateTo) {
|
||
|
this.enddateTo = enddateTo;
|
||
|
}
|
||
|
|
||
|
public String getOutcome() {
|
||
|
return outcome;
|
||
|
}
|
||
|
|
||
|
public void setOutcome(String outcome) {
|
||
|
this.outcome = outcome;
|
||
|
}
|
||
|
|
||
|
public String getOwnergroup() {
|
||
|
return ownergroup;
|
||
|
}
|
||
|
|
||
|
public void setOwnergroup(String ownergroup) {
|
||
|
this.ownergroup = ownergroup;
|
||
|
}
|
||
|
|
||
|
public String getTextattribute3() {
|
||
|
return textattribute3;
|
||
|
}
|
||
|
|
||
|
public void setTextattribute3(String textattribute3) {
|
||
|
this.textattribute3 = textattribute3;
|
||
|
}
|
||
|
|
||
|
public String getTextattribute7() {
|
||
|
return textattribute7;
|
||
|
}
|
||
|
|
||
|
public void setTextattribute7(String textattribute7) {
|
||
|
this.textattribute7 = textattribute7;
|
||
|
}
|
||
|
|
||
|
public String getTextattribute9() {
|
||
|
return textattribute9;
|
||
|
}
|
||
|
|
||
|
public void setTextattribute9(String textattribute9) {
|
||
|
this.textattribute9 = textattribute9;
|
||
|
}
|
||
|
|
||
|
public String getAcquiredby() {
|
||
|
return acquiredby;
|
||
|
}
|
||
|
|
||
|
public void setAcquiredby(String acquiredby) {
|
||
|
this.acquiredby = acquiredby;
|
||
|
}
|
||
|
|
||
|
}
|