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.
37 lines
809 B
C#
37 lines
809 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Service.DataSync.Dto
|
|
{
|
|
public class TxxpReceiveFeedbackDto
|
|
{
|
|
/// <summary>
|
|
/// 订舱id
|
|
/// </summary>
|
|
public long? BookingId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 提单号
|
|
/// </summary>
|
|
public string MBLNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 有效期起始
|
|
/// </summary>
|
|
public DateTime? BeginTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 有效期截止
|
|
/// </summary>
|
|
public DateTime? EndTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// pdf地址
|
|
/// </summary>
|
|
public string PdfUrl { get; set; }
|
|
}
|
|
}
|