using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Pur.Entity.configureEntity { [Serializable] public class PurCkStoragePosEntity { private string invPosId; /// /// 主键 /// public string InvPosId { set { invPosId = value; } get { return invPosId; } } private string invId; /// /// 库存记录号 /// public string InvId { set { invId = value; } get { return invId; } } private Double? seqId; /// /// 顺序号 /// public Double? SeqId { set { seqId = value; } get { return seqId; } } private string invPhysic; /// /// 物理库区 /// public string InvPhysic { set { invPhysic = value; } get { return invPhysic; } } /** 采购单位(个、袋、桶) */ private String itemUom; public String ItemUom { get { return itemUom; } set { itemUom = value; } } /** 转换系数 */ private Double itemUomConefficient; public Double ItemUomConefficient { get { return itemUomConefficient; } set { itemUomConefficient = value; } } /** 库存单位 */ private String weightUnit; public String WeightUnit { get { return weightUnit; } set { weightUnit = value; } } private string invPos; /// /// 库区储位 /// public string InvPos { set { invPos = value; } get { return invPos; } } private string remark; /// /// 备注 /// public string Remark { set { remark = value; } get { return remark; } } private string validflag; /// /// 数据状态(有效、无效) /// public string Validflag { set { validflag = value; } get { return validflag; } } private string createName; /// /// 创建人 /// public string CreateName { set { createName = value; } get { return createName; } } private DateTime? createTime; /// /// 创建时间 /// public DateTime? CreateTime { set { createTime = value; } get { return createTime; } } private string createUserid; /// /// 创建人ID /// public string CreateUserid { set { createUserid = value; } get { return createUserid; } } private string updateName; /// /// 修改人 /// public string UpdateName { set { updateName = value; } get { return updateName; } } private DateTime? updateTime; /// /// 修改时间 /// public DateTime? UpdateTime { set { updateTime = value; } get { return updateTime; } } private string updateUserid; /// /// 修改人ID /// public string UpdateUserid { set { updateUserid = value; } get { return updateUserid; } } private string deleteName; /// /// 废除人 /// public string DeleteName { set { deleteName = value; } get { return deleteName; } } private DateTime? deleteTime; /// /// 废除时间 /// public DateTime? DeleteTime { set { deleteTime = value; } get { return deleteTime; } } private string deleteUserid; /// /// 废除人ID /// public string DeleteUserid { set { deleteUserid = value; } get { return deleteUserid; } } private Double? invOrigQty; /// /// 库存原始数量 /// public Double? InvOrigQty { set { invOrigQty = value; } get { return invOrigQty; } } private Double? invQty; /// /// 库存数量 /// public Double? InvQty { set { invQty = value; } get { return invQty; } } private Double? invOrQty; /// /// 库存预约量 /// public Double? InvOrQty { set { invOrQty = value; } get { return invOrQty; } } private string packageQty; /// /// 包装数 /// public string PackageQty { set { packageQty = value; } get { return packageQty; } } private string packageUnit; /// /// 包装方式 /// public string PackageUnit { set { packageUnit = value; } get { return packageUnit; } } private string batchNo; /// /// 入场批 /// public string BatchNo { set { batchNo = value; } get { return batchNo; } } private string matBatchNo; /// /// 物料批 /// public string MatBatchNo { set { matBatchNo = value; } get { return matBatchNo; } } /// /// 检验批 /// private string checkNo; public string CheckNo { get { return checkNo; } set { checkNo = value; } } private Double? invQtyWeight; /// /// 入库数量(库存) /// public Double? InvQtyWeight { set { invQtyWeight = value; } get { return invQtyWeight; } } private string itemCode; public string ItemCode { get { return itemCode; } set { itemCode = value; } } private string itemName; public string ItemName { get { return itemName; } set { itemName = value; } } private string suppName; public string SuppName { get { return suppName; } set { suppName = value; } } private string purLineId; public string PurLineId { get { return purLineId; } set { purLineId = value; } } private Double? unitWeight; /// /// 每袋重量 /// public Double? UnitWeight { set { unitWeight = value; } get { return unitWeight; } } } }