no message
This commit is contained in:
parent
a1d6f90837
commit
3ef7b08c95
|
|
@ -1306,6 +1306,19 @@ public class OrderMasterController extends BaseController {
|
|||
orderListResponse.setGoodsAreaList(goods.getGoodsAreaList());
|
||||
orderListResponse.setOrderMode(orderMaster.getOrderMode());
|
||||
orderListResponse.setIsCall(orderMaster.getIsCall());
|
||||
orderListResponse.setAddress(orderMaster.getAddress());
|
||||
|
||||
orderListResponse.setProvinceId(customerAddress.getProvinceId());
|
||||
orderListResponse.setCityId(customerAddress.getCityId());
|
||||
orderListResponse.setCountryId(customerAddress.getCountryId());
|
||||
orderListResponse.setAddress(customerAddress.getAddress());
|
||||
orderListResponse.setPhone(customerAddress.getPhone());
|
||||
orderListResponse.setName(customerAddress.getName());
|
||||
orderListResponse.setProvinceName(customerAddress.getProvinceName());
|
||||
orderListResponse.setCityName(customerAddress.getCityName());
|
||||
orderListResponse.setCountryName(customerAddress.getCountryName());
|
||||
orderListResponse.setStreetId(customerAddress.getStreetId());
|
||||
orderListResponse.setStreetName(customerAddress.getStreetName());
|
||||
|
||||
return AjaxResult.success(orderListResponse);
|
||||
} catch (Exception e) {
|
||||
|
|
|
|||
|
|
@ -176,4 +176,26 @@ public class OrderListResponse {
|
|||
private Long insuranceId;
|
||||
|
||||
private InsuranceManager insuranceManager;
|
||||
|
||||
private Long cityId;
|
||||
|
||||
/*街道id*/
|
||||
private Long streetId;
|
||||
|
||||
private Long provinceId;
|
||||
|
||||
private String name;
|
||||
private String phone;
|
||||
|
||||
private String provinceName;
|
||||
|
||||
private String cityName;
|
||||
|
||||
private String countryName;
|
||||
|
||||
private String streetName;
|
||||
|
||||
|
||||
private Long countryId;
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue