|
|
@@ -44,6 +44,43 @@ public class UpdateUserBo extends UserArchives {
|
|
|
|
|
|
private Integer type;
|
|
|
|
|
|
+ /**
|
|
|
+ * 开户行所在地-省
|
|
|
+ */
|
|
|
+ private Integer locationProvince;
|
|
|
+ /**
|
|
|
+ * 开户行所在地-市
|
|
|
+ */
|
|
|
+ private Integer locationCity;
|
|
|
+ /**
|
|
|
+ * 开户行所在地-区(县)
|
|
|
+ */
|
|
|
+ private Integer locationArea;
|
|
|
+
|
|
|
+ public Integer getLocationProvince() {
|
|
|
+ return locationProvince;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLocationProvince(Integer locationProvince) {
|
|
|
+ this.locationProvince = locationProvince;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getLocationCity() {
|
|
|
+ return locationCity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLocationCity(Integer locationCity) {
|
|
|
+ this.locationCity = locationCity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getLocationArea() {
|
|
|
+ return locationArea;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLocationArea(Integer locationArea) {
|
|
|
+ this.locationArea = locationArea;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getType() {
|
|
|
return type;
|
|
|
}
|