using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.response.pt
{
///
/// 盘条实时库存查询响应
///
public class PTGetCurStockListResponse : SRes
{
///
/// 总条数
///
public int TotalCount { get; set; }
///
/// 返回数据明细
///
public List list { get; set; }
}
public class PtResDataItem
{
///
/// RFID值
///
public string RFID { get; set; }
///
/// 盘条条码
///
public string RodBar { get; set; }
///
/// 炉号
///
public string BoilerNo { get; set; }
///
/// 材料号
///
public string MatBarCode { get; set; }
///
/// 包号
///
public string PackNo { get; set; }
///
/// 生产批号
///
public string Batch { get; set; }
///
/// 碳当量
///
public decimal Carbon { get; set; }
///
/// 生产日期
///
public DateTime ProductDate { get; set; }
///
/// 牌号
///
public string Brand { get; set; }
///
/// 规格
///
public string Describe { get; set; }
///
/// 执行标准
///
public string ExecStandard { get; set; }
///
/// 许可证号
///
public string Licence { get; set; }
///
/// 包重
///
public decimal PackWeight { get; set; }
///
/// 时效期
///
public decimal HoldDuration { get; set; }
///
/// 图号
///
public string FigureNo { get; set; }
///
/// 公司代码
///
public string ComCode { get; set; }
///
/// 公司名称
///
public string ComName { get; set; }
///
/// 计量单位
///
public string CalcUnit { get; set; }
///
/// 库存单位
///
public string StockUnit { get; set; }
///
/// 单重
///
public decimal Weight { get; set; }
///
/// 单重单位
///
public string WeightUnit { get; set; }
///
/// 是否启用时效
///
public bool IsHold { get; set; }
///
/// 时效时长
///
public decimal HoldDurations { 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; }
}
}