using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
namespace Model.ModelDto.DataDto
{
///
/// 物料库存dto
///
public class MateDataStockDto
{
///
/// id
///
public int Id { get; set; }
///
/// 物料号
///
public string SkuNo { get; set; }
///
/// 物料名称
///
public string SkuName { get; set; }
///
/// 规格
///
public string Standard { get; set; }
///
/// 物料类型
///
public string Type { get; set; }
///
/// 数量
///
public string Qty { get; set; }
///
/// 锁定数量
///
public string LockQty { get; set; }
///
/// 冻结数量
///
public string FrozenQty { get; set; }
///
/// 剩余数量
///
public string ResidueQty { get; set; }
///
/// 批次号
///
public string LotNo { get; set; }
///
/// 批次描述
///
public string LotText { get; set; }
///
/// 供货批次
///
public string SupplierLot { get; set; }
///
/// 储位地址
///
public string LocatNo { get; set; }
///
/// 所属巷道
///
public string RoadwayNo { get; set; }
///
/// 托盘号
///
public string PalletNo { get; set; }
///
/// 生产时间
///
public DateTime ProductionTime { get; set; }
///
/// 过期时间
///
public DateTime ExpirationTime { get; set; }
///
/// 状态
///
public string Status { get; set; }
///
/// 检验标记
///
public string InspectMark { get; set; }
///
/// 零托标记
///
public string BitPalletMark { get; set; }
///
/// 质量状态
///
public string InspectStatus { get; set; }
///
/// 是否裹包
///
public string IsBale { get; set; }
///
/// 是否打带
///
public string IsBelt { get; set; }
///
/// 重量
///
public decimal WeightSum { get; set; }
///
/// 是否子母托
///
public string PalletType { get; set; }
///
/// 入库时间
///
public DateTime CompleteTime { get; set; }
///
/// 库存明细备注
///
public string Demo { get; set; }
}
}