using Admin.NET.Core;
namespace Admin.NET.Application.Entity;
///
/// 分销出库
///
[SugarTable("DistributorInvoice","分销出库")]
public class DistributorInvoice : EntityTenant
{
///
/// 仓库ID
///
[SugarColumn(ColumnName = "WarehouseId", ColumnDescription = "仓库ID")]
public long? WarehouseId { get; set; }
///
/// 目标仓库ID
///
[SugarColumn(ColumnName = "TargetWarehouseId", ColumnDescription = "目标仓库ID")]
public long? TargetWarehouseId { get; set; }
///
/// 分销商ID
///
[SugarColumn(ColumnName = "DistributorId", ColumnDescription = "分销商ID")]
public long? DistributorId { get; set; }
///
/// 分销商
///
[SugarColumn(ColumnName = "Distributor", ColumnDescription = "分销商", Length = 32)]
public string? Distributor { get; set; }
///
/// 业务日期
///
[SugarColumn(ColumnName = "StartDate", ColumnDescription = "业务日期")]
public DateTime? StartDate { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "Remarks", ColumnDescription = "备注", Length = 32)]
public string? Remarks { get; set; }
}