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.
45 lines
960 B
C#
45 lines
960 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.EDI
|
|
{
|
|
/// <summary>
|
|
/// 发送海运出口邮件Req
|
|
/// </summary>
|
|
public class SendShippingOrderReq
|
|
{
|
|
/// <summary>
|
|
/// 订舱ID
|
|
/// </summary>
|
|
public long BookingId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主题
|
|
/// </summary>
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// 收件人
|
|
/// </summary>
|
|
public string SendTo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 抄送
|
|
/// </summary>
|
|
public string CCTo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 内容
|
|
/// </summary>
|
|
public string Body { get; set; }
|
|
|
|
/// <summary>
|
|
/// 附件文件
|
|
/// </summary>
|
|
public List<string> FileList { get; set; } = new List<string>();
|
|
}
|
|
}
|