using iWare.Wms.Core.Util.LowCode.Dto; using System; namespace iWare.Wms.Application { /// /// 记录流水管理输出参数 /// public class WareFlowRecordDto { /// /// 流水类型 /// public int RecordType { get; set; } /// /// 库区 /// public string ReservoirArea { get; set; } /// /// 条码 /// public string BarCode { get; set; } /// /// 起始库位代码 /// public string SourceWareLocationCode { get; set; } /// /// 目标库位代码 /// public string ToWareLocationCode { get; set; } /// /// 载具代码 /// public string WareContainerCode { get; set; } /// /// 载具名称 /// public string WareContainerName { get; set; } /// /// 物料代码 /// public string WareMaterialCode { get; set; } /// /// 物料名称 /// public string WareMaterialName { get; set; } /// /// 物料数量 /// public decimal Quantity { get; set; } /// /// 状态-正常_0、停用_1、删除_2 /// public iWare.Wms.Core.CommonStatus Status { get; set; } /// /// 备注 /// public string Remarks { get; set; } /// /// Id主键 /// public long Id { get; set; } } }