123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using Newtonsoft.Json;
- namespace Common.Request.BorderOfficial
- {
- public class BOrderOfficialOrderParam {
-
-
-
-
- public string kuaidicom {get; set;}
-
-
-
- public string recManName {get; set;}
-
-
-
- public string recManMobile {get; set;}
-
-
-
- public string recManPrintAddr {get; set;}
-
-
-
- public string sendManName {get; set;}
-
-
-
- public string sendManMobile {get; set;}
-
-
-
- public string sendManPrintAddr {get; set;}
-
-
-
- public string cargo {get; set;}
-
-
-
- public string weight {get; set;}
-
-
-
- public string remark {get; set;}
-
-
-
- public string salt {get; set;}
-
-
-
- public string callBackUrl {get; set;}
-
-
-
- public string serviceType {get; set;}
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this,Formatting.Indented,new JsonSerializerSettings(){NullValueHandling = NullValueHandling.Ignore});
- }
- }
- }
|