Commit a74e8a2f by 张明警

去掉性别字段

parent e3d7948a
...@@ -776,7 +776,6 @@ public class OrderSdkAdapter { ...@@ -776,7 +776,6 @@ public class OrderSdkAdapter {
data.setLatitude(orderInfoReqs.getDeliveryContactInfoList().get(0).getLatitude().doubleValue()); data.setLatitude(orderInfoReqs.getDeliveryContactInfoList().get(0).getLatitude().doubleValue());
data.setLongitude(orderInfoReqs.getDeliveryContactInfoList().get(0).getLongitude().doubleValue()); data.setLongitude(orderInfoReqs.getDeliveryContactInfoList().get(0).getLongitude().doubleValue());
data.setTakeAddress(orderInfoReqs.getDeliveryContactInfoList().get(0).getAddressDetail()); data.setTakeAddress(orderInfoReqs.getDeliveryContactInfoList().get(0).getAddressDetail());
data.setGender(orderInfoReqs.getDeliveryContactInfoList().get(0).getGender());
} }
} }
if (deliveryContactInfoResp.getRelateObjectType() == 3) { if (deliveryContactInfoResp.getRelateObjectType() == 3) {
......
...@@ -176,11 +176,6 @@ public class QueryOrdersResponse { ...@@ -176,11 +176,6 @@ public class QueryOrdersResponse {
*/ */
private String phone; private String phone;
/**
* 性别
*/
private Byte gender;
private String posId; private String posId;
private String remark; private String remark;
/** /**
......
...@@ -61,7 +61,4 @@ public class DeliveryContactInfoResp { ...@@ -61,7 +61,4 @@ public class DeliveryContactInfoResp {
//运单号 //运单号
private String expressNo; private String expressNo;
//性别
private Byte gender;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment