DigitalFactory/Admin.NET/Admin.NET.Application/Service/OutboundDetail/Dto/OutboundDetailDto.cs

24 lines
521 B
C#

namespace Admin.NET.Application;
/// <summary>
/// 出库详细输出参数
/// </summary>
public class OutboundDetailDto
{
/// <summary>
/// 主键Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 出库单ID
/// </summary>
public long? OutboundId { get; set; }
/// <summary>
/// 条码ID列表
/// </summary>
public string? CodeTableIds { get; set; }
}