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 DS.WMS.Core.Op.Entity;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.Op.Dtos
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class SeaExportSaveLog
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 操作方式:新增(Create)、更新(Update)、删除(Delete)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string OperateType { get; set; } = "Update";
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 旧值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public SeaExport OldOrder { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 新值
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public SeaExport NewOrder { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 业务来源代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public string SourceCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 业务来源
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public string SourceName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<string> UpdateFields { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|