You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.4 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// ESL Draft下载请求
/// </summary>
public class ESLDraftRequestDto
{
/// <summary>
/// ESL账户
/// </summary>
public string u { get; set; }
/// <summary>
/// ESL密码
/// </summary>
public string p { get; set; }
/// <summary>
/// ep号
/// </summary>
public string ep_code { get; set; }
/// <summary>
/// 操作邮箱 会把Draft文件转发到此邮箱建议默认不传
/// </summary>
public string op_email { get; set; }
}
public class ESLDraftAPIBaseResult
{
/// <summary>
/// 回执代码 1-成功 0-失败
/// </summary>
public int status { get; set; }
/// <summary>
/// 消息
/// </summary>
public string message { get; set; }
/// <summary>
/// 详情
/// </summary>
public ESLDraftAPIBaseResultData data { get; set; }
}
public class ESLDraftAPIBaseResultData
{
/// <summary>
/// NAS路径
/// </summary>
public string abs_path { get; set; }
/// <summary>
/// Nginx代理的路径
/// </summary>
public string api_path { get; set; }
}
}