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
1.0 KiB
C#
41 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// SI详情
|
|
/// </summary>
|
|
public class TaskSIFeedBackResultDto
|
|
{
|
|
// <summary>
|
|
/// 任务主键
|
|
/// </summary>
|
|
public string TaskId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱详情
|
|
/// </summary>
|
|
public TaskBookingOrderDto BookingOrder { get; set; }
|
|
|
|
/// <summary>
|
|
/// SI详情
|
|
/// </summary>
|
|
public TaskSIFeedBackResultBusiDto BusiInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// SI与订舱主信息比对差异字段列表
|
|
/// </summary>
|
|
public List<string> SICompareOrderKeyList { get; set; }
|
|
|
|
/// <summary>
|
|
/// SI与订舱集装箱比对差异字段列表
|
|
/// </summary>
|
|
public List<string> SICompareOrderContaKeyList { get; set; }
|
|
}
|
|
}
|