using System; using System.Collections.Generic; namespace WMS.BZModels.Dto.FJ.BillSpooltransDtos { public partial class BillSpooltransDto { /// /// ID /// public string Id { get; set; } /// /// 工字轮条码 /// public string ConBarCode { get; set; } /// /// 分拣库仓库编码 /// public string WarehouseCode { get; set; } /// /// 分拣库序号 /// public int? WarehouseSort { get; set; } /// /// 南北向 /// public string Direct { get; set; } /// /// 输送线号 /// public int? ConveyorSort { get; set; } /// /// 位置序号 /// public int? LocSort { get; set; } /// /// 湿拉物料编码 /// public string MatCode { get; set; } /// /// 异常盘类型 /// public int? ErrType { get; set; } /// /// 异常盘信息 /// public string ErrMsg { get; set; } /// /// 湿拉工序订单号 /// public string BillCode { get; set; } /// /// 生产订单号 /// public string WorkOrder { get; set; } /// /// 备注 /// public string Memo { get; set; } /// /// 创建用户 /// public string AddWho { get; set; } /// /// 更新用户 /// public string EditWho { get; set; } /// /// 创建时间 /// public DateTime AddTime { get; set; } /// /// 更新时间 /// public DateTime EditTime { get; set; } } }