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.
BookingHeChuan/Myshipping.Application/Service/BookingOrder/Dto/BCOrDraftRequestDto.cs

40 lines
983 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// BC或DRAFT下载请求
/// </summary>
public class BCOrDraftRequestDto
{
/// <summary>
/// 用户key
/// </summary>
public string user_key { get; set; }
/// <summary>
/// 用户secret
/// </summary>
public string user_secret { get; set; }
/// <summary>
/// 网站账号
/// </summary>
public string web_user { get; set; }
/// <summary>
/// 网站密码
/// </summary>
public string web_psw { get; set; }
/// <summary>
/// 单号(订舱编号)
/// </summary>
public string bno { get; set; }
/// <summary>
/// 是否解析,默认否
/// </summary>
public bool is_parse { get; set; } = false;
}
}