using System; using System.Collections.Generic; using System.Text; namespace wms.dto.response.hj { /// /// 实时库存查询响应实体 /// public class GetCurStockListResponse : SRes { /// /// 总条数 /// public int TotalCount { get; set; } /// /// 返回数据明细 /// public List ResData { get; set; } } public class ResDataItem { /// /// RFID值 /// public string RFID { get; set; } /// /// 材料号 /// public string MatBarCode { get; set; } /// /// 物料编码 /// public string MatCode { get; set; } /// /// 物料名称 /// public string MatName { get; set; } /// /// 大类代码 /// public string HeadTypeCode { get; set; } /// /// 叶类代码 /// public string LeafTypeCode { get; set; } /// /// 规格 /// public string Describe { get; set; } /// /// 强度 /// public string Strength { get; set; } /// /// 镀层 /// public string Plating { get; set; } /// /// 镀层克重 /// public decimal PlatingWeight { get; set; } /// /// 镀层主元素含量 /// public decimal PlatingConQty { get; set; } /// /// 线密度 /// public decimal Linear { get; set; } /// /// 是否启用时效 /// public bool IsHold { get; set; } /// /// 时效时长 /// public decimal HoldDuration { get; set; } /// /// 单重单位 /// public string WeightUnit { get; set; } /// /// 更新时间 /// public DateTime UpdatedTime { get; set; } /// /// 货位编码 /// public string LocCode { get; set; } /// /// 行 /// public string LocRow { get; set; } /// /// 列 /// public string LocCell { get; set; } /// /// 层 /// public string LocLayer { get; set; } /// /// 仓库编码 /// public string WareCode { get; set; } } }