using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.WarehouseMgr.Entities.Dto.Outputs { /// /// 盘点任务明细输出类 /// public class CheckTaskDetailOutput { /// /// 物料编号 /// public string material_code { get; set; } /// /// 批次 /// public string code_batch { get; set; } /// /// 库位编号 /// public string location_code { get; set; } /// ///载具编号 /// public string carry_code { get; set; } /// /// 理论库存数量 /// public decimal? pr_qty { get; set; } /// /// 结算状态 /// public string closing_status { get; set; } /// /// 已盘点数量 /// public decimal? qty { get; set; } } }