namespace Myshipping.Core; /// /// http请求类型 /// public enum RequestTypeEnum { /// /// 执行内部方法 /// Run = 0, /// /// GET请求 /// Get = 1, /// /// POST请求 /// Post = 2, /// /// PUT请求 /// Put = 3, /// /// DELETE请求 /// Delete = 4 }