using System; using System.Text; namespace com.hnshituo.pur.vo { [Serializable] public class CkOutbillPosition { /** 主键 */ private string id; public string Id { get { return id; } set { id = value; } } /** 出库单号 */ private string outStockNo; public string OutStockNo { get { return outStockNo; } set { outStockNo = value; } } /** 顺序号 */ private string seqId; public string SeqId { get { return seqId; } set { seqId = value; } } /** 出库量 */ private double? outNum; public double? OutNum { get { return outNum; } set { outNum = value; } } /** 库存记录号 */ private string invId; public string InvId { get { return invId; } set { invId = value; } } /** 备注 */ private string remark; public string Remark { get { return remark; } set { remark = value; } } /** 数据状态(有效、无效) */ private string validflag; public string Validflag { get { return validflag; } set { validflag = value; } } /** 创建人 */ private string createName; public string CreateName { get { return createName; } set { createName = value; } } /** 创建时间 */ private DateTime? createTime; public DateTime? CreateTime { get { return createTime; } set { createTime = value; } } /** 修改人 */ private string updateName; public string UpdateName { get { return updateName; } set { updateName = value; } } /** 修改时间 */ private DateTime? updateTime; public DateTime? UpdateTime { get { return updateTime; } set { updateTime = value; } } /** 废除人 */ private string deleteName; public string DeleteName { get { return deleteName; } set { deleteName = value; } } /** 废除时间 */ private DateTime? deleteTime; public DateTime? DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /** 创建人ID */ private string createUserid; public string CreateUserid { get { return createUserid; } set { createUserid = value; } } /** 修改人ID */ private string updateUserid; public string UpdateUserid { get { return updateUserid; } set { updateUserid = value; } } /** 废除人ID */ private string deleteUserid; public string DeleteUserid { get { return deleteUserid; } set { deleteUserid = value; } } /** 合同号 */ private string orderId; public string OrderId { get { return orderId; } set { orderId = value; } } /** 合同行号 */ private string orderLineSqe; public string OrderLineSqe { get { return orderLineSqe; } set { orderLineSqe = value; } } /** 供应商代码 */ private string suppCode; public string SuppCode { get { return suppCode; } set { suppCode = value; } } /** 供应商名称 */ private string suppName; public string SuppName { get { return suppName; } set { suppName = value; } } /** 逻辑库区 */ private string invLogic; public string InvLogic { get { return invLogic; } set { invLogic = value; } } /** 物理库区 */ private string invPhysic; public string InvPhysic { get { return invPhysic; } set { invPhysic = value; } } /** 库区储位 */ private string invPos; public string InvPos { get { return invPos; } set { invPos = value; } } /** 批次号 */ private string batchNo; public string BatchNo { get { return batchNo; } set { batchNo = value; } } /** 库存单位 */ private string weightUnit; public string WeightUnit { get { return weightUnit; } set { weightUnit = value; } } // /** 库存单位 */ private string invPosId; public string InvPosId { get { return invPosId; } set { invPosId = value; } } } }