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.
125 lines
2.8 KiB
125 lines
2.8 KiB
package com.spring.ifs.data;
|
|
|
|
public class WarehouseLocation {
|
|
private String site;
|
|
private String locationId;
|
|
private String locationName;
|
|
private String warehouseId;
|
|
private String active;
|
|
private String createBy;
|
|
private String createDate;
|
|
private String updateBy;
|
|
private String updateDate;
|
|
private String locationType;
|
|
private String ifsRowId;
|
|
private String ifsRowVersion;
|
|
|
|
public WarehouseLocation() {
|
|
super();
|
|
}
|
|
|
|
public String getSite() {
|
|
return site;
|
|
}
|
|
|
|
public void setSite(String site) {
|
|
this.site = site;
|
|
}
|
|
|
|
public String getLocationId() {
|
|
return locationId;
|
|
}
|
|
|
|
public void setLocationId(String locationId) {
|
|
this.locationId = locationId;
|
|
}
|
|
|
|
public String getLocationName() {
|
|
return locationName;
|
|
}
|
|
|
|
public void setLocationName(String locationName) {
|
|
this.locationName = locationName;
|
|
}
|
|
|
|
public String getWarehouseId() {
|
|
return warehouseId;
|
|
}
|
|
|
|
public void setWarehouseId(String warehouseId) {
|
|
this.warehouseId = warehouseId;
|
|
}
|
|
|
|
public String getActive() {
|
|
return active;
|
|
}
|
|
|
|
public void setActive(String active) {
|
|
this.active = active;
|
|
}
|
|
|
|
public String getCreateBy() {
|
|
return createBy;
|
|
}
|
|
|
|
public void setCreateBy(String createBy) {
|
|
this.createBy = createBy;
|
|
}
|
|
|
|
public String getCreateDate() {
|
|
return createDate;
|
|
}
|
|
|
|
public void setCreateDate(String createDate) {
|
|
this.createDate = createDate;
|
|
}
|
|
|
|
public String getUpdateBy() {
|
|
return updateBy;
|
|
}
|
|
|
|
public void setUpdateBy(String updateBy) {
|
|
this.updateBy = updateBy;
|
|
}
|
|
|
|
public String getUpdateDate() {
|
|
return updateDate;
|
|
}
|
|
|
|
public void setUpdateDate(String updateDate) {
|
|
this.updateDate = updateDate;
|
|
}
|
|
|
|
public String getLocationType() {
|
|
return locationType;
|
|
}
|
|
|
|
public void setLocationType(String locationType) {
|
|
this.locationType = locationType;
|
|
}
|
|
|
|
public String getIfsRowId() {
|
|
return ifsRowId;
|
|
}
|
|
|
|
public void setIfsRowId(String ifsRowId) {
|
|
this.ifsRowId = ifsRowId;
|
|
}
|
|
|
|
public String getIfsRowVersion() {
|
|
return ifsRowVersion;
|
|
}
|
|
|
|
public void setIfsRowVersion(String ifsRowVersion) {
|
|
this.ifsRowVersion = ifsRowVersion;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "IfsLocationData [site=" + site + ", locationId=" + locationId + ", locationName=" + locationName
|
|
+ ", warehouseId=" + warehouseId + ", active=" + active + ", createBy=" + createBy + ", createDate="
|
|
+ createDate + ", updateBy=" + updateBy + ", updateDate=" + updateDate + ", locationType="
|
|
+ locationType + ", ifsRowVersion=" + ifsRowVersion + "]";
|
|
}
|
|
|
|
}
|