using System; using System.Text; namespace Pur.Entity.ck { [Serializable] public class CkStorage : MatAttr { private string invId; /// /// 库存记录号 /// public string InvId { set { invId = value; } get { return invId; } } private string receiveType; /// /// 库存属性 /// public string ReceiveType { set { receiveType = value; } get { return receiveType; } } private string inStockNo; /// /// 入库单号 /// public string InStockNo { set { inStockNo = value; } get { return inStockNo; } } private string refeId; /// /// 参考单号 /// public string RefeId { set { refeId = value; } get { return refeId; } } /** 入库单位ID */ private String operateOrgId; public String OperateOrgId { get { return operateOrgId; } set { operateOrgId = value; } } /** 入库单位名称 */ private String operateOrgName; public String OperateOrgName { get { return operateOrgName; } set { operateOrgName = value; } } private DateTime? checkDate; /// /// 检验日期 /// public DateTime? CheckDate { set { checkDate = value; } get { return checkDate; } } private string checkUsername; /// /// 检验人姓名 /// public string CheckUsername { set { checkUsername = value; } get { return checkUsername; } } private string checkUserid; /// /// 检验人账号 /// public string CheckUserid { set { checkUserid = value; } get { return checkUserid; } } private string checkResult; /// /// 综合判定 /// public string CheckResult { set { checkResult = value; } get { return checkResult; } } private string result; /// /// 检验结果 /// public string Result { set { result = value; } get { return result; } } private string refType; /// /// 参考单类别 /// public string RefType { set { refType = value; } get { return refType; } } private string itemCode; /// /// 物料编码 /// public string ItemCode { set { itemCode = value; } get { return itemCode; } } private string itemDesc; /// /// 物料描述 /// public string ItemDesc { set { itemDesc = value; } get { return itemDesc; } } private string itemName; /// /// 物料名称 /// public string ItemName { set { itemName = value; } get { return itemName; } } private string itemDescE; /// /// 物料英文名称 /// public string ItemDescE { set { itemDescE = value; } get { return itemDescE; } } private string itemSpec; /// /// 物料型号规格 /// public string ItemSpec { set { itemSpec = value; } get { return itemSpec; } } private string itemUseUom; /// /// 是否使用采购单位 /// public string ItemUseUom { set { itemUseUom = value; } get { return itemUseUom; } } private string itemUom; /// /// 采购单位(个、袋、桶) /// public string ItemUom { set { itemUom = value; } get { return itemUom; } } private Double? itemUomConefficient; /// /// 转换系数 /// public Double? ItemUomConefficient { set { itemUomConefficient = value; } get { return itemUomConefficient; } } private string weightUnit; /// /// 库存单位 /// public string WeightUnit { set { weightUnit = value; } get { return weightUnit; } } private string orderId; /// /// 合同号 /// public string OrderId { set { orderId = value; } get { return orderId; } } private string orderLineSqe; /// /// 合同行号 /// public string OrderLineSqe { set { orderLineSqe = value; } get { return orderLineSqe; } } private string suppCode; /// /// 供应商代码 /// public string SuppCode { set { suppCode = value; } get { return suppCode; } } private string suppName; /// /// 供应商名称 /// public string SuppName { set { suppName = value; } get { return suppName; } } private Double? invOrigQty; /// /// 库存原始数量 /// public Double? InvOrigQty { set { invOrigQty = value; } get { return invOrigQty; } } private Double? invOrigAmt; /// /// 库存原值总价 /// public Double? InvOrigAmt { set { invOrigAmt = value; } get { return invOrigAmt; } } 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 Double? invUnitPrice; /// /// 库存单价 /// public Double? InvUnitPrice { set { invUnitPrice = value; } get { return invUnitPrice; } } private Double? stockMoney; /// /// 库存总价 /// public Double? StockMoney { set { stockMoney = value; } get { return stockMoney; } } private Double? yucaiQty; public Double? YucaiQty { get { return yucaiQty; } set { yucaiQty = value; } } private Double? normalQty; public Double? NormalQty { get { return normalQty; } set { normalQty = value; } } private Double? yucaiQtyWeight; public Double? YucaiQtyWeight { get { return yucaiQtyWeight; } set { yucaiQtyWeight = value; } } private Double? normalQtyWeight; public Double? NormalQtyWeight { get { return normalQtyWeight; } set { normalQtyWeight = value; } } private Double? unNormalQty; public Double? UnNormalQty { get { return unNormalQty; } set { unNormalQty = value; } } private Double? unNormalQtyWeight; public Double? UnNormalQtyWeight { get { return unNormalQtyWeight; } set { unNormalQtyWeight = value; } } private Double? bugPrice; /// /// 预算价 /// public Double? BugPrice { set { bugPrice = value; } get { return bugPrice; } } private Double? invBudgetAmt; /// /// 库存预算总价 /// public Double? InvBudgetAmt { set { invBudgetAmt = value; } get { return invBudgetAmt; } } private string invResponser; /// /// 库存责任人 /// public string InvResponser { set { invResponser = value; } get { return invResponser; } } private string invMaterialType; /// /// 库存物料方式 /// public string InvMaterialType { set { invMaterialType = value; } get { return invMaterialType; } } private string invPriceType; /// /// 库存计价方式 /// public string InvPriceType { set { invPriceType = value; } get { return invPriceType; } } private string expenseType; /// /// 费用类型 /// public string ExpenseType { set { expenseType = value; } get { return expenseType; } } 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 updateName; /// /// 修改人 /// public string UpdateName { set { updateName = value; } get { return updateName; } } private DateTime? updateTime; /// /// 修改时间 /// public DateTime? UpdateTime { set { updateTime = value; } get { return updateTime; } } 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 createUserid; /// /// 创建人ID /// public string CreateUserid { set { createUserid = value; } get { return createUserid; } } private string updateUserid; /// /// 修改人ID /// public string UpdateUserid { set { updateUserid = value; } get { return updateUserid; } } private string deleteUserid; /// /// 废除人ID /// public string DeleteUserid { set { deleteUserid = value; } get { return deleteUserid; } } private string status; /// /// 0:待检1:合格2:不合格 /// public string Status { set { status = value; } get { return status; } } /// /// 批次号(检验) /// private string checkNo; public string CheckNo { get { return checkNo; } set { checkNo = value; } } private string batchNo; /// /// 入场号 /// public string BatchNo { set { batchNo = value; } get { return batchNo; } } private string useStatus; /// /// 1: 不可用2: 可正常使用 /// public string UseStatus { set { useStatus = value; } get { return useStatus; } } private string matBatchNo; /// /// 批次号(物料) /// public string MatBatchNo { set { matBatchNo = value; } get { return matBatchNo; } } /// /// 采购计划行号 /// private string purLineId; public string PurLineId { get { return purLineId; } set { purLineId = value; } } private string itemUnique; /// /// 唯一值标识 /// public string ItemUnique { set { itemUnique = value; } get { return itemUnique; } } /// /// 物理库区 /// private string invPhysic; public string InvPhysic { get { return invPhysic; } set { invPhysic = value; } } private string deliveryLocationCode; /// /// 交付地址编码 /// public string DeliveryLocationCode { set { deliveryLocationCode = value; } get { return deliveryLocationCode; } } private string deliveryLocation; /// /// 交付地址 /// public string DeliveryLocation { set { deliveryLocation = value; } get { return deliveryLocation; } } private String invIdSource; /// /// 源库存记录号(移库) /// public String InvIdSource { get { return invIdSource; } set { invIdSource = value; } } /** 包装数 */ private String packageQty; /// /// 包装数 /// public String PackageQty { get { return packageQty; } set { packageQty = value; } } /** 包装单位 */ private String packageUnit; /// /// 包装单位 /// public String PackageUnit { get { return packageUnit; } set { packageUnit = value; } } /** 每袋重量 */ private String unitWeight; /// /// 每袋重量 /// public String UnitWeight { get { return unitWeight; } set { unitWeight = value; } } /** 包装方式 */ private String packageType; /// /// 包装方式 /// public String PackageType { get { return packageType; } set { packageType = value; } } /** 打印编号 */ private String printNo; /// /// 打印编号 /// public String PrintNo { get { return printNo; } set { printNo = value; } } /** 移库状态 */ private String ykStatus; /// /// 移库状态 /// public String YkStatus { get { return ykStatus; } set { ykStatus = value; } } } }