Commit 3402df89 by guanzhenshan

增加币种字段

parent b1d8c4bb
...@@ -59,5 +59,7 @@ namespace Bailun.DC.SyncLogisticInfo.Models ...@@ -59,5 +59,7 @@ namespace Bailun.DC.SyncLogisticInfo.Models
public DateTime gmt_create_time { get; set; } public DateTime gmt_create_time { get; set; }
public DateTime gmt_modify_time { get; set; } public DateTime gmt_modify_time { get; set; }
public string currencytype { get; set; }
} }
} }
...@@ -81,6 +81,8 @@ namespace Bailun.DC.SyncLogisticInfo.Models ...@@ -81,6 +81,8 @@ namespace Bailun.DC.SyncLogisticInfo.Models
public string feeProductType { get; set; } public string feeProductType { get; set; }
public string currencyType { get; set; }
public DateTime lastModificationTime { get; set; } public DateTime lastModificationTime { get; set; }
} }
} }
...@@ -181,7 +181,9 @@ namespace Bailun.DC.SyncLogisticInfo ...@@ -181,7 +181,9 @@ namespace Bailun.DC.SyncLogisticInfo
shipment_time = item.shipmentTime, shipment_time = item.shipmentTime,
tracking_no = item.trackingNo, tracking_no = item.trackingNo,
weight_diff_decimal = item.weightDiffDecimal, weight_diff_decimal = item.weightDiffDecimal,
wms_id = item.id wms_id = item.id,
currencytype = item.currencyType,
}; };
cn.Insert<dc_base_logistics>(m); cn.Insert<dc_base_logistics>(m);
......
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