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.
40 lines
928 B
C#
40 lines
928 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 装船通知与提单草单内容对比
|
|
/// </summary>
|
|
public class TaskManageOrderSIDraftCompareInfo
|
|
{
|
|
/// <summary>
|
|
/// 字段代码
|
|
/// </summary>
|
|
public string FieldCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字段名称
|
|
/// </summary>
|
|
public string FieldName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否有差异 1-有差异 0-无差异
|
|
/// </summary>
|
|
public int IsDiff { get; set; }
|
|
|
|
/// <summary>
|
|
/// 装船通知内容
|
|
/// </summary>
|
|
public string SIContent { get; set; }
|
|
|
|
/// <summary>
|
|
/// 提单草单内容
|
|
/// </summary>
|
|
public string DraftContent { get; set; }
|
|
}
|
|
}
|