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/MSKSPOT/QueryMSKSPOTScheduleDto.cs

85 lines
2.1 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>
///
/// </summary>
public class QueryMSKSPOTScheduleDto
{
/// <summary>
/// 船公司代码
/// </summary>
public string carrierId { get; set; }
/// <summary>
/// 起运地geoid
/// </summary>
public string originGeoId { get; set; }
/// <summary>
/// 支持的承运人代码, 目前API仅支持MAEU
/// </summary>
public string brandScac { get; set; }
/// <summary>
/// 起运地rkst代码
/// </summary>
public string originRkstCode { get; set; }
/// <summary>
/// 起运地五子码
/// </summary>
public string originUnLocCode { get; set; }
/// <summary>
/// 目的地geo id
/// </summary>
public string destinationGeoId { get; set; }
/// <summary>
/// 目的地rkst代码
/// </summary>
public string destinationRkstCode { get; set; }
/// <summary>
/// 目的地五子码
/// </summary>
public string destinationUnLocCode { get; set; }
/// <summary>
/// 箱型
/// </summary>
public string containerType { get; set; }
/// <summary>
/// 箱量
/// </summary>
public Nullable<int> containerCount { get; set; }
/// <summary>
/// 箱重
/// </summary>
public Nullable<int> containerWeight { get; set; }
/// <summary>
/// 起运地服务模式CY, SD
/// </summary>
public string originServiceMode { get; set; }
/// <summary>
/// 目的地服务模式CY, SD
/// </summary>
public string destinationServiceMode { get; set; }
/// <summary>
/// 查询的起运日期, 格式: YYYY-MM-DD
/// </summary>
public string departureDate { get; set; }
}
}