using Myshipping.Application.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// ONE订舱附件打印 /// public class ONEPrintSOFileDto : BookingOrder { /// /// 发送人 /// public string senderName { get; set; } /// /// 发送人电话 /// public string senderTel { get; set; } /// /// 发送人传真 /// public string senderFax { get; set; } /// /// 发送人手机 /// public string senderMobile { get; set; } /// /// 发送人Email /// public string senderEmail { get; set; } } }