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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
public class TaskVgmCompareDto : TaskVGMFeedBackDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 比对差异字段
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<string> compareDiffList { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class TaskVgmCompareResultDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱与VGM反馈差异对比
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<TaskVgmCompareDto> bookOrderCompareList { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// VGM反馈与订舱差异比对
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<TaskVgmCompareDto> vgmCompareList { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|