123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using Newtonsoft.Json;
- namespace Common.Request.internationalshipment
- {
- public class ExportInfo
- {
-
-
-
- public double netWeight { get; set; }
-
-
-
- public double grossWeight { get; set; }
-
-
-
- public string manufacturingCountryCode { get; set; }
-
-
-
- public double unitPrice { get; set; }
-
-
-
- public int quantity { get; set; }
-
-
-
- public string quantityUnitOfMeasurement { get; set; }
-
-
-
- public string desc { get; set; }
-
-
-
- public string importCommodityCode { get; set; }
-
-
-
- public string exportCommodityCode { get; set; }
-
-
-
- public int numberOfPieces { get; set; }
-
-
-
- public string sku { get; set; }
-
-
-
- public string zhName { get; set; }
-
-
-
- public string enName { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore });
- }
- }
- }
|