using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 生成预甩货调度请求
///
public class RollingNominationDispatchRequestDto
{
///
/// 预甩货主键
///
public string nominationId { get; set; }
///
/// 是否新增(true-新增,不处理NOM_STATUS_NOTE=Load的记录 false-可以处理任意记录)
///
public bool isAdd { get; set; } = false;
///
/// 预甩货可Load明细信息主键组
///
public string[] loadDetailIds { get; set; }
///
/// 预甩货调度批次主键
///
public string nominationBatchId { get; set; }
}
}