47 lines
1.0 KiB
Java
47 lines
1.0 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmOrgCalMstDtlBean extends BaseDetailBean implements Serializable {
|
|
private String txtSiteId;
|
|
|
|
private String txtSlabNumber;
|
|
|
|
private String txtSlabBeginMonth;
|
|
|
|
private String txtDuration;
|
|
|
|
public String getTxtSiteId() {
|
|
return this.txtSiteId;
|
|
}
|
|
|
|
public void setTxtSiteId(String newTxtSiteId) {
|
|
this.txtSiteId = newTxtSiteId;
|
|
}
|
|
|
|
public String getTxtSlabNumber() {
|
|
return this.txtSlabNumber;
|
|
}
|
|
|
|
public void setTxtSlabNumber(String newTxtSlabNumber) {
|
|
this.txtSlabNumber = newTxtSlabNumber;
|
|
}
|
|
|
|
public String getTxtSlabBeginMonth() {
|
|
return this.txtSlabBeginMonth;
|
|
}
|
|
|
|
public void setTxtSlabBeginMonth(String newTxtSlabBeginMonth) {
|
|
this.txtSlabBeginMonth = newTxtSlabBeginMonth;
|
|
}
|
|
|
|
public String getTxtDuration() {
|
|
return this.txtDuration;
|
|
}
|
|
|
|
public void setTxtDuration(String newTxtDuration) {
|
|
this.txtDuration = newTxtDuration;
|
|
}
|
|
}
|