107 lines
2.2 KiB
Java
107 lines
2.2 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmEmpPersAssetDtlBean extends BaseDetailBean implements Serializable {
|
|
private String fullAddress;
|
|
|
|
private String detailOfProperty;
|
|
|
|
private String costOfConstruction;
|
|
|
|
private String yearOfPurchase;
|
|
|
|
private String presentValue;
|
|
|
|
private String nameHeld;
|
|
|
|
private String howAquired;
|
|
|
|
private String detailOfPerson;
|
|
|
|
private String totalIncome;
|
|
|
|
private String remarks;
|
|
|
|
public String getFullAddress() {
|
|
return this.fullAddress;
|
|
}
|
|
|
|
public void setFullAddress(String fullAddress) {
|
|
this.fullAddress = fullAddress;
|
|
}
|
|
|
|
public String getDetailOfProperty() {
|
|
return this.detailOfProperty;
|
|
}
|
|
|
|
public void setDetailOfProperty(String detailOfProperty) {
|
|
this.detailOfProperty = detailOfProperty;
|
|
}
|
|
|
|
public String getCostOfConstruction() {
|
|
return this.costOfConstruction;
|
|
}
|
|
|
|
public void setCostOfConstruction(String costOfConstruction) {
|
|
this.costOfConstruction = costOfConstruction;
|
|
}
|
|
|
|
public String getYearOfPurchase() {
|
|
return this.yearOfPurchase;
|
|
}
|
|
|
|
public void setYearOfPurchase(String yearOfPurchase) {
|
|
this.yearOfPurchase = yearOfPurchase;
|
|
}
|
|
|
|
public String getPresentValue() {
|
|
return this.presentValue;
|
|
}
|
|
|
|
public void setPresentValue(String presentValue) {
|
|
this.presentValue = presentValue;
|
|
}
|
|
|
|
public String getNameHeld() {
|
|
return this.nameHeld;
|
|
}
|
|
|
|
public void setNameHeld(String nameHeld) {
|
|
this.nameHeld = nameHeld;
|
|
}
|
|
|
|
public String getHowAquired() {
|
|
return this.howAquired;
|
|
}
|
|
|
|
public void setHowAquired(String howAquired) {
|
|
this.howAquired = howAquired;
|
|
}
|
|
|
|
public String getDetailOfPerson() {
|
|
return this.detailOfPerson;
|
|
}
|
|
|
|
public void setDetailOfPerson(String detailOfPerson) {
|
|
this.detailOfPerson = detailOfPerson;
|
|
}
|
|
|
|
public String getTotalIncome() {
|
|
return this.totalIncome;
|
|
}
|
|
|
|
public void setTotalIncome(String totalIncome) {
|
|
this.totalIncome = totalIncome;
|
|
}
|
|
|
|
public String getRemarks() {
|
|
return this.remarks;
|
|
}
|
|
|
|
public void setRemarks(String remarks) {
|
|
this.remarks = remarks;
|
|
}
|
|
}
|