|
|
@@ -27,32 +27,32 @@ public class TOrderNewBo extends TOrderNew{
|
|
|
private String depName;
|
|
|
private String accountsReceivable;
|
|
|
private String uncollectedAmount;
|
|
|
- private String locationProvince;
|
|
|
- private String locationCity;
|
|
|
- private String locationArea;
|
|
|
+ private Integer locationProvince;
|
|
|
+ private Integer locationCity;
|
|
|
+ private Integer locationArea;
|
|
|
private String postalAddress;
|
|
|
|
|
|
- public String getLocationProvince() {
|
|
|
+ public Integer getLocationProvince() {
|
|
|
return locationProvince;
|
|
|
}
|
|
|
|
|
|
- public void setLocationProvince(String locationProvince) {
|
|
|
+ public void setLocationProvince(Integer locationProvince) {
|
|
|
this.locationProvince = locationProvince;
|
|
|
}
|
|
|
|
|
|
- public String getLocationCity() {
|
|
|
+ public Integer getLocationCity() {
|
|
|
return locationCity;
|
|
|
}
|
|
|
|
|
|
- public void setLocationCity(String locationCity) {
|
|
|
+ public void setLocationCity(Integer locationCity) {
|
|
|
this.locationCity = locationCity;
|
|
|
}
|
|
|
|
|
|
- public String getLocationArea() {
|
|
|
+ public Integer getLocationArea() {
|
|
|
return locationArea;
|
|
|
}
|
|
|
|
|
|
- public void setLocationArea(String locationArea) {
|
|
|
+ public void setLocationArea(Integer locationArea) {
|
|
|
this.locationArea = locationArea;
|
|
|
}
|
|
|
|