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