24 lines
652 B
C#
24 lines
652 B
C#
using Admin.NET.Core;
|
|
namespace Admin.NET.Application.Entity;
|
|
|
|
/// <summary>
|
|
/// 出库详细
|
|
/// </summary>
|
|
[SugarTable("OutboundDetail","出库详细")]
|
|
public class OutboundDetail : EntityBaseId
|
|
{
|
|
/// <summary>
|
|
/// 出库单ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OutboundId", ColumnDescription = "出库单ID")]
|
|
public long? OutboundId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 条码ID列表
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CodeTableIds", ColumnDescription = "条码ID列表", ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
[Required]
|
|
public string? CodeTableIds { get; set; }
|
|
|
|
}
|