123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- using System;
- namespace Common
- {
- public class ApiInfoConstant
- {
-
-
-
- public const string QUERY_URL = "http://poll.kuaidi100.com/poll/query.do";
-
-
-
- public const string SUBSCRIBE_URL = "https://poll.kuaidi100.com/poll";
-
-
-
- public const string QUERY_URL_WITH_MAP = "https://poll.kuaidi100.com/poll/maptrack.do";
-
-
-
- public const string SUBSCRIBE_URL_WITH_MAP = "http://poll.kuaidi100.com/pollmap";
-
-
-
- public const string SUBSCRIBE_SCHEMA = "json";
-
-
-
- public const string AUTO_NUM_URL = "http://www.kuaidi100.com/autonumber/auto?num={0}&key={1}";
-
-
-
- public const string ELECTRONIC_ORDER_HTML_URL = "http://poll.kuaidi100.com/eorderapi.do";
-
-
-
- public const string ELECTRONIC_ORDER_HTML_METHOD = "getElecOrder";
-
-
-
- public const string ELECTRONIC_ORDER_PIC_URL = "https://poll.kuaidi100.com/printapi/printtask.do";
-
-
-
- public const string ELECTRONIC_ORDER_PIC_METHOD = "getPrintImg";
-
-
-
- public const string ELECTRONIC_ORDER_PRINT_URL = "https://poll.kuaidi100.com/printapi/printtask.do";
-
-
-
- public const string ELECTRONIC_ORDER_PRINT_METHOD = "eOrder";
-
-
-
- public const string AUTH_THIRD_URL = "https://poll.kuaidi100.com/printapi/authThird.do";
-
-
-
- public const string CLOUD_PRINT_URL = "http://poll.kuaidi100.com/printapi/printtask.do?method={0}&t={1}&key={2}&sign={3}¶m={4}";
-
-
-
- public const string CLOUD_PRINT_CUSTOM_METHOD = "printOrder";
-
-
-
- public const string CLOUD_PRINT_ATTACHMENT_METHOD = "imgOrder";
-
-
-
- public const string CLOUD_PRINT_OLD_METHOD = "printOld";
-
-
-
- public const string CLOUD_PRINT_DEV_STATUS = "devstatus";
-
-
-
- public const string SEND_SMS_URL = "http://apisms.kuaidi100.com:9502/sms/send.do";
-
-
-
- public const string B_ORDER_URL = "https://order.kuaidi100.com/order/borderbestapi.do";
-
-
-
- public const string B_ORDER_QUERY_TRANSPORT_CAPACITY_METHOD = "querymkt";
-
-
-
- public const string B_ORDER_SEND_METHOD = "bOrderBest";
-
-
-
- public const string B_ORDER_CODE_METHOD = "getCode";
-
-
-
- public const string B_ORDER_CANCEL_METHOD = "cancelBest";
-
-
-
- public const string B_ORDER_OFFICIAL_URL = "https://poll.kuaidi100.com/order/borderapi.do";
-
-
-
- public const string B_ORDER_OFFICIAL_ORDER_METHOD = "bOrder";
-
-
-
- public const string B_ORDER_OFFICIAL_CANCEL_METHOD = "cancel";
-
-
-
- public const string B_ORDER_OFFICIAL_PRICE_METHOD = "Price";
-
-
-
- public const string SAME_CITY_ORDER_URL = "https://order.kuaidi100.com/sameCity/order";
-
-
-
- public const string SAME_CITY_AUTH_METHOD = "auth";
-
-
-
- public const string SAME_CITY_ORDER_METHOD = "order";
-
-
-
- public const string SAME_CITY_QUERY_METHOD = "query";
-
-
-
- public const string SAME_CITY_CANCEL_METHOD = "cancel";
-
-
-
- public const string CANCEL_METHOD = "cancel";
-
-
-
- public const string CLOUD_PRINT_COMMAND = "printCommand";
-
-
-
- public const string INTERNATIONAL_SHIPMENT_URL = "http://api.kuaidi100.com/sendAssistant/order/apiCall";
-
-
-
- public const string THIRD_PLATFORM_ORDER_SHOP_AUTHORIZE_url = "https://api.kuaidi100.com/ent/shop/authorize";
-
-
-
- public const string THIRD_PLATFORM_ORDER_COMMIT_TASK = "https://api.kuaidi100.com/ent/order/task";
-
-
-
- public const string THIRD_PLATFORM_ORDER_UPLOAD_NUM = "https://api.kuaidi100.com/ent/logistics/send";
-
-
-
- public const string BILL_PARCELS_URL = "https://poll.kuaidi100.com/print/billparcels.do";
-
-
-
- public const string BILL_PARCELS_METHOD = "billparcels";
-
-
-
- public const string THIRD_PLATFORM_BRANCH_INFO_METHOD = "getThirdInfo";
-
-
-
- public const string OCR_URL = "http://api.kuaidi100.com/elec/detocr";
-
-
-
- public const string NEW_TEMPLATE_URL = "https://api.kuaidi100.com/label/order";
-
-
-
- public const String ORDER = "order";
-
-
-
- public const String CUSTOM = "custom";
-
-
-
- public const String DETAIL = "detail";
- }
- }
|