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.
41 lines
921 B
C#
41 lines
921 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>
|
|
/// ONE订舱附件打印
|
|
/// </summary>
|
|
public class ONEPrintSOFileDto : BookingOrder
|
|
{
|
|
/// <summary>
|
|
/// 发送人
|
|
/// </summary>
|
|
public string senderName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发送人电话
|
|
/// </summary>
|
|
public string senderTel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发送人传真
|
|
/// </summary>
|
|
public string senderFax { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发送人手机
|
|
/// </summary>
|
|
public string senderMobile { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发送人Email
|
|
/// </summary>
|
|
public string senderEmail { get; set; }
|
|
}
|
|
}
|