| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace com.hnshituo.pur.ck.vo
- {
- public class PurCkStorageEntity
- {
- private string invId="";
- /// <summary>
- /// 库存记录号
- /// </summary>
- public string InvId
- {
- set { invId = value; }
- get { return invId; }
- }
- private string receiveType="";
- /// <summary>
- /// 库存属性
- /// </summary>
- public string ReceiveType
- {
- set { receiveType = value; }
- get { return receiveType; }
- }
- private string inStockNo="";
- /// <summary>
- /// 入库单号
- /// </summary>
- public string InStockNo
- {
- set { inStockNo = value; }
- get { return inStockNo; }
- }
- private string refeId="";
- /// <summary>
- /// 参考单号
- /// </summary>
- 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;
- /// <summary>
- /// 检验日期
- /// </summary>
- public DateTime? CheckDate
- {
- set { checkDate = value; }
- get { return checkDate; }
- }
- private string checkUsername;
- /// <summary>
- /// 检验人姓名
- /// </summary>
- public string CheckUsername
- {
- set { checkUsername = value; }
- get { return checkUsername; }
- }
- private string checkUserid;
- /// <summary>
- /// 检验人账号
- /// </summary>
- public string CheckUserid
- {
- set { checkUserid = value; }
- get { return checkUserid; }
- }
- private string checkResult;
- /// <summary>
- /// 综合判定
- /// </summary>
- public string CheckResult
- {
- set { checkResult = value; }
- get { return checkResult; }
- }
- private string result;
- /// <summary>
- /// 检验结果
- /// </summary>
- public string Result
- {
- set { result = value; }
- get { return result; }
- }
- private string refType;
- /// <summary>
- /// 参考单类别
- /// </summary>
- public string RefType
- {
- set { refType = value; }
- get { return refType; }
- }
- private string itemCode;
- /// <summary>
- /// 物料编码
- /// </summary>
- public string ItemCode
- {
- set { itemCode = value; }
- get { return itemCode; }
- }
- private string itemDesc;
- /// <summary>
- /// 物料描述
- /// </summary>
- public string ItemDesc
- {
- set { itemDesc = value; }
- get { return itemDesc; }
- }
- private string itemName;
- /// <summary>
- /// 物料名称
- /// </summary>
- public string ItemName
- {
- set { itemName = value; }
- get { return itemName; }
- }
- private string itemDescE;
- /// <summary>
- /// 物料英文名称
- /// </summary>
- public string ItemDescE
- {
- set { itemDescE = value; }
- get { return itemDescE; }
- }
- private string itemSpec;
- /// <summary>
- /// 物料型号规格
- /// </summary>
- public string ItemSpec
- {
- set { itemSpec = value; }
- get { return itemSpec; }
- }
- private string itemUseUom;
- /// <summary>
- /// 是否使用采购单位
- /// </summary>
- public string ItemUseUom
- {
- set { itemUseUom = value; }
- get { return itemUseUom; }
- }
- private string itemUom;
- /// <summary>
- /// 采购单位(个、袋、桶)
- /// </summary>
- public string ItemUom
- {
- set { itemUom = value; }
- get { return itemUom; }
- }
- private Double? itemUomConefficient;
- /// <summary>
- /// 转换系数
- /// </summary>
- public Double? ItemUomConefficient
- {
- set { itemUomConefficient = value; }
- get { return itemUomConefficient; }
- }
- private string weightUnit;
- /// <summary>
- /// 库存单位
- /// </summary>
- public string WeightUnit
- {
- set { weightUnit = value; }
- get { return weightUnit; }
- }
- private string orderId;
- /// <summary>
- /// 合同号
- /// </summary>
- public string OrderId
- {
- set { orderId = value; }
- get { return orderId; }
- }
- private string orderLineSqe;
- /// <summary>
- /// 合同行号
- /// </summary>
- public string OrderLineSqe
- {
- set { orderLineSqe = value; }
- get { return orderLineSqe; }
- }
- private string suppCode;
- /// <summary>
- /// 供应商代码
- /// </summary>
- public string SuppCode
- {
- set { suppCode = value; }
- get { return suppCode; }
- }
- private string suppName;
- /// <summary>
- /// 供应商名称
- /// </summary>
- public string SuppName
- {
- set { suppName = value; }
- get { return suppName; }
- }
- private Double? invOrigQty;
- /// <summary>
- /// 库存原始数量
- /// </summary>
- public Double? InvOrigQty
- {
- set { invOrigQty = value; }
- get { return invOrigQty; }
- }
- private Double? invOrigAmt;
- /// <summary>
- /// 库存原值总价
- /// </summary>
- public Double? InvOrigAmt
- {
- set { invOrigAmt = value; }
- get { return invOrigAmt; }
- }
- private Double? invQty;
- /// <summary>
- /// 库存数量
- /// </summary>
- public Double? InvQty
- {
- set { invQty = value; }
- get { return invQty; }
- }
- private Double? invOrQty;
- /// <summary>
- /// 库存预约量
- /// </summary>
- public Double? InvOrQty
- {
- set { invOrQty = value; }
- get { return invOrQty; }
- }
- private Double? invUnitPrice;
- /// <summary>
- /// 库存单价
- /// </summary>
- public Double? InvUnitPrice
- {
- set { invUnitPrice = value; }
- get { return invUnitPrice; }
- }
- private Double? stockMoney;
- /// <summary>
- /// 库存总价
- /// </summary>
- 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;
- /// <summary>
- /// 预算价
- /// </summary>
- public Double? BugPrice
- {
- set { bugPrice = value; }
- get { return bugPrice; }
- }
- private Double? invBudgetAmt;
- /// <summary>
- /// 库存预算总价
- /// </summary>
- public Double? InvBudgetAmt
- {
- set { invBudgetAmt = value; }
- get { return invBudgetAmt; }
- }
- private string invResponser;
- /// <summary>
- /// 库存责任人
- /// </summary>
- public string InvResponser
- {
- set { invResponser = value; }
- get { return invResponser; }
- }
- private string invMaterialType;
- /// <summary>
- /// 库存物料方式
- /// </summary>
- public string InvMaterialType
- {
- set { invMaterialType = value; }
- get { return invMaterialType; }
- }
- private string invPriceType;
- /// <summary>
- /// 库存计价方式
- /// </summary>
- public string InvPriceType
- {
- set { invPriceType = value; }
- get { return invPriceType; }
- }
- private string expenseType;
- /// <summary>
- /// 费用类型
- /// </summary>
- public string ExpenseType
- {
- set { expenseType = value; }
- get { return expenseType; }
- }
- private string remark;
- /// <summary>
- /// 备注
- /// </summary>
- public string Remark
- {
- set { remark = value; }
- get { return remark; }
- }
- private string validflag;
- /// <summary>
- /// 数据状态(有效、无效)
- /// </summary>
- public string Validflag
- {
- set { validflag = value; }
- get { return validflag; }
- }
- private string createName;
- /// <summary>
- /// 创建人
- /// </summary>
- public string CreateName
- {
- set { createName = value; }
- get { return createName; }
- }
- private DateTime? createTime;
- /// <summary>
- /// 创建时间
- /// </summary>
- public DateTime? CreateTime
- {
- set { createTime = value; }
- get { return createTime; }
- }
- private string updateName;
- /// <summary>
- /// 修改人
- /// </summary>
- public string UpdateName
- {
- set { updateName = value; }
- get { return updateName; }
- }
- private DateTime? updateTime;
- /// <summary>
- /// 修改时间
- /// </summary>
- public DateTime? UpdateTime
- {
- set { updateTime = value; }
- get { return updateTime; }
- }
- private string deleteName;
- /// <summary>
- /// 废除人
- /// </summary>
- public string DeleteName
- {
- set { deleteName = value; }
- get { return deleteName; }
- }
- private DateTime? deleteTime;
- /// <summary>
- /// 废除时间
- /// </summary>
- public DateTime? DeleteTime
- {
- set { deleteTime = value; }
- get { return deleteTime; }
- }
- private string createUserid;
- /// <summary>
- /// 创建人ID
- /// </summary>
- public string CreateUserid
- {
- set { createUserid = value; }
- get { return createUserid; }
- }
- private string updateUserid;
- /// <summary>
- /// 修改人ID
- /// </summary>
- public string UpdateUserid
- {
- set { updateUserid = value; }
- get { return updateUserid; }
- }
- private string deleteUserid;
- /// <summary>
- /// 废除人ID
- /// </summary>
- public string DeleteUserid
- {
- set { deleteUserid = value; }
- get { return deleteUserid; }
- }
- private string status;
- /// <summary>
- /// 0:待检1:合格2:不合格
- /// </summary>
- public string Status
- {
- set { status = value; }
- get { return status; }
- }
- /// <summary>
- /// 批次号(检验)
- /// </summary>
- private string checkNo;
- public string CheckNo
- {
- get { return checkNo; }
- set { checkNo = value; }
- }
- private string batchNo;
- /// <summary>
- /// 入场号
- /// </summary>
- public string BatchNo
- {
- set { batchNo = value; }
- get { return batchNo; }
- }
- private string useStatus;
- /// <summary>
- /// 1: 不可用2: 可正常使用
- /// </summary>
- public string UseStatus
- {
- set { useStatus = value; }
- get { return useStatus; }
- }
- private string matBatchNo;
- /// <summary>
- /// 批次号(物料)
- /// </summary>
- public string MatBatchNo
- {
- set { matBatchNo = value; }
- get { return matBatchNo; }
- }
- /// <summary>
- /// 采购计划行号
- /// </summary>
- private string purLineId;
- public string PurLineId
- {
- get { return purLineId; }
- set { purLineId = value; }
- }
- private string itemUnique;
- /// <summary>
- /// 唯一值标识
- /// </summary>
- public string ItemUnique
- {
- set { itemUnique = value; }
- get { return itemUnique; }
- }
- /// <summary>
- /// 物理库区
- /// </summary>
- private string invPhysic;
- public string InvPhysic
- {
- get { return invPhysic; }
- set { invPhysic = value; }
- }
- private string deliveryLocationCode;
- /// <summary>
- /// 交付地址编码
- /// </summary>
- public string DeliveryLocationCode
- {
- set { deliveryLocationCode = value; }
- get { return deliveryLocationCode; }
- }
- private string deliveryLocation;
- /// <summary>
- /// 交付地址
- /// </summary>
- public string DeliveryLocation
- {
- set { deliveryLocation = value; }
- get { return deliveryLocation; }
- }
- private String invIdSource;
- /// <summary>
- /// 源库存记录号(移库)
- /// </summary>
- public String InvIdSource
- {
- get { return invIdSource; }
- set { invIdSource = value; }
- }
- /** 包装数 */
- private String packageQty;
- /// <summary>
- /// 包装数
- /// </summary>
- public String PackageQty
- {
- get { return packageQty; }
- set { packageQty = value; }
- }
- /** 包装单位 */
- private String packageUnit;
- /// <summary>
- /// 包装单位
- /// </summary>
- public String PackageUnit
- {
- get { return packageUnit; }
- set { packageUnit = value; }
- }
- /** 每袋重量 */
- private String unitWeight;
- /// <summary>
- /// 每袋重量
- /// </summary>
- public String UnitWeight
- {
- get { return unitWeight; }
- set { unitWeight = value; }
- }
- /** 包装方式 */
- private String packageType;
- /// <summary>
- /// 包装方式
- /// </summary>
- public String PackageType
- {
- get { return packageType; }
- set { packageType = value; }
- }
- }
- }
|