using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// /// public class TaskCompareResultDto { /// /// 字段代码 /// public string Code { get; set; } /// /// 原值 /// public object SrcVal { get; set; } /// /// 修改值 /// public object TargetVal { get; set; } /// /// 是否不一致 /// public bool IsDiff { get; set; } = false; /// /// 字段类型 /// public Type ValType { get; set; } } }