|
|
@@ -474,6 +474,8 @@ class OrderDetailData {
|
|
|
String senderPhone; //发件人电话
|
|
|
int stationId;
|
|
|
String stationName;
|
|
|
+ String receiptStationName;
|
|
|
+ String receiptStationCode;
|
|
|
OrderDetailData(
|
|
|
{
|
|
|
this.createTime,
|
|
|
@@ -525,7 +527,9 @@ class OrderDetailData {
|
|
|
this.sendCompanyPhone,
|
|
|
this.senderPhone,
|
|
|
this.stationId,
|
|
|
- this.stationName
|
|
|
+ this.stationName,
|
|
|
+ this.receiptStationName,
|
|
|
+ this.receiptStationCode,
|
|
|
});
|
|
|
|
|
|
factory OrderDetailData.fromJson(Map<String, dynamic> json) {
|
|
|
@@ -579,7 +583,9 @@ class OrderDetailData {
|
|
|
senderPhone: json['senderPhone'],
|
|
|
sendCompanyPhone:json['sendCompanyPhone'],
|
|
|
stationId:json['stationId'],
|
|
|
- stationName:json['stationName']
|
|
|
+ stationName:json['stationName'],
|
|
|
+ receiptStationName:json['receiptStationName'],
|
|
|
+ receiptStationCode:json['receiptStationCode'],
|
|
|
);
|
|
|
|
|
|
}
|