Commit a436683445d5d4fad32673b4e37fdcf4486f510e
1 parent
7a3e1b01
update:地址全称
Showing
1 changed file
with
17 additions
and
1 deletions
etrade-order/src/main/java/com/diligrp/etrade/order/domain/contactPerson/OrderContactPersonListVo.java
@@ -206,7 +206,7 @@ public class OrderContactPersonListVo implements Serializable { | @@ -206,7 +206,7 @@ public class OrderContactPersonListVo implements Serializable { | ||
206 | 206 | ||
207 | public String getFullAddress() { | 207 | public String getFullAddress() { |
208 | if(provinceName!=null){ | 208 | if(provinceName!=null){ |
209 | - fullAddress=provinceName+cityName+districtName+address; | 209 | + fullAddress=provinceName+cityName+districtName+streetName+address; |
210 | } | 210 | } |
211 | return fullAddress; | 211 | return fullAddress; |
212 | } | 212 | } |
@@ -230,4 +230,20 @@ public class OrderContactPersonListVo implements Serializable { | @@ -230,4 +230,20 @@ public class OrderContactPersonListVo implements Serializable { | ||
230 | public void setDeliverable(Integer deliverable) { | 230 | public void setDeliverable(Integer deliverable) { |
231 | this.deliverable = deliverable; | 231 | this.deliverable = deliverable; |
232 | } | 232 | } |
233 | + | ||
234 | + public Long getStreetId() { | ||
235 | + return streetId; | ||
236 | + } | ||
237 | + | ||
238 | + public void setStreetId(Long streetId) { | ||
239 | + this.streetId = streetId; | ||
240 | + } | ||
241 | + | ||
242 | + public String getStreetName() { | ||
243 | + return streetName; | ||
244 | + } | ||
245 | + | ||
246 | + public void setStreetName(String streetName) { | ||
247 | + this.streetName = streetName; | ||
248 | + } | ||
233 | } | 249 | } |
234 | \ No newline at end of file | 250 | \ No newline at end of file |