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/BookingAttachedDataDto.cs

28 lines
543 B
C#

using Myshipping.Application.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
///
/// </summary>
public class BookingAttachedDataDto
{
/// <summary>
/// 订舱备注
/// </summary>
public List<BookingRemark> remark { get; set; }
/// <summary>
/// 订舱附件
/// </summary>
public List<BookingFile> file { get; set; }
}
}