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