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
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 生成预甩货调度请求
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class RollingNominationDispatchRequestDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 预甩货主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string nominationId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否新增(true-新增,不处理NOM_STATUS_NOTE=Load的记录 false-可以处理任意记录)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool isAdd { get; set; } = false;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 预甩货可Load明细信息主键组
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string[] loadDetailIds { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 预甩货调度批次主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string nominationBatchId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|