diff --git a/Myshipping.Application/Service/BookingOrder/Dto/ESLDraftRequestDto.cs b/Myshipping.Application/Service/BookingOrder/Dto/ESLDraftRequestDto.cs
new file mode 100644
index 00000000..a5b81396
--- /dev/null
+++ b/Myshipping.Application/Service/BookingOrder/Dto/ESLDraftRequestDto.cs
@@ -0,0 +1,62 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Myshipping.Application
+{
+ ///
+ /// ESL Draft下载请求
+ ///
+ public class ESLDraftRequestDto
+ {
+ ///
+ /// ESL账户
+ ///
+ public string u { get; set; }
+ ///
+ /// ESL密码
+ ///
+ public string p { get; set; }
+ ///
+ /// ep号
+ ///
+ public string ep_code { get; set; }
+ ///
+ /// 操作邮箱 会把Draft文件转发到此邮箱,建议默认不传
+ ///
+ public string op_email { get; set; }
+ }
+
+ public class ESLDraftAPIBaseResult
+ {
+ ///
+ /// 回执代码 1-成功 0-失败
+ ///
+ public int status { get; set; }
+
+ ///
+ /// 消息
+ ///
+ public string message { get; set; }
+
+ ///
+ /// 详情
+ ///
+ public ESLDraftAPIBaseResultData data { get; set; }
+ }
+
+ public class ESLDraftAPIBaseResultData
+ {
+ ///
+ /// NAS路径
+ ///
+ public string abs_path { get; set; }
+
+ ///
+ /// Nginx代理的路径
+ ///
+ public string api_path { get; set; }
+ }
+}