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.
BookingHeChuan/Myshipping.Application/Service/TaskManagePlat/Dtos/Nomination/RollingNominationDispatchRe...

35 lines
914 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}