| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Pur.Entity.configureEntity
- {
- [Serializable]
- public class PurCkInBillEntity:MatAttr
- {
- private string inStockNo;
- /// <summary>
- /// 入库单号(行号)
- /// </summary>
- public string InStockNo
- {
- set { inStockNo = value; }
- get { return inStockNo; }
- }
- private string matchid;
- public string Matchid
- {
- get { return matchid; }
- set { matchid = value; }
- }
- private string inStockMrNo;
- /// <summary>
- /// 入库单号
- /// </summary>
- public string InStockMrNo
- {
- set { inStockMrNo = value; }
- get { return inStockMrNo; }
- }
- private string putawayType;
- /// <summary>
- /// 入库性质
- /// </summary>
- public string PutawayType
- {
- set { putawayType = value; }
- get { return putawayType; }
- }
- private string recId;
- /// <summary>
- /// 收货单号
- /// </summary>
- public string RecId
- {
- set { recId = value; }
- get { return recId; }
- }
- private string refeId;
- /// <summary>
- /// 参考单号
- /// </summary>
- public string RefeId
- {
- set { refeId = value; }
- get { return refeId; }
- }
- private string refType;
- /// <summary>
- /// 参考单类别
- /// </summary>
- public string RefType
- {
- set { refType = value; }
- get { return refType; }
- }
- private string status;
- /// <summary>
- /// 状态
- /// </summary>
- public string Status
- {
- set { status = value; }
- get { return status; }
- }
- private string orderId;
- /// <summary>
- /// 合同号
- /// </summary>
- public string OrderId
- {
- set { orderId = value; }
- get { return orderId; }
- }
- /** 入库单位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 string orderLineSqe;
- /// <summary>
- /// 合同行号
- /// </summary>
- public string OrderLineSqe
- {
- set { orderLineSqe = value; }
- get { return orderLineSqe; }
- }
- private string mrId;
- /// <summary>
- /// 申请单号
- /// </summary>
- public string MrId
- {
- set { mrId = value; }
- get { return mrId; }
- }
- 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 accountPeriod;
- /// <summary>
- /// 会计期
- /// </summary>
- public string AccountPeriod
- {
- set { accountPeriod = value; }
- get { return accountPeriod; }
- }
- private string invId;
- /// <summary>
- /// 库存记录号
- /// </summary>
- public string InvId
- {
- set { invId = value; }
- get { return invId; }
- }
- private string invLogic;
- /// <summary>
- /// 逻辑库区
- /// </summary>
- public string InvLogic
- {
- set { invLogic = value; }
- get { return invLogic; }
- }
- private string invPhysic;
- /// <summary>
- /// 物理库区
- /// </summary>
- public string InvPhysic
- {
- set { invPhysic = value; }
- get { return invPhysic; }
- }
- private string invPos;
- /// <summary>
- /// 库区储位
- /// </summary>
- public string InvPos
- {
- set { invPos = value; }
- get { return invPos; }
- }
- private string receiveType;
- /// <summary>
- /// 入库类型
- /// </summary>
- public string ReceiveType
- {
- set { receiveType = value; }
- get { return receiveType; }
- }
- private Double? inNum;
- /// <summary>
- /// 入库量
- /// </summary>
- public Double? InNum
- {
- set { inNum = value; }
- get { return inNum; }
- }
- private string inStockAmt;
- /// <summary>
- /// 入库金额
- /// </summary>
- public string InStockAmt
- {
- set { inStockAmt = value; }
- get { return inStockAmt; }
- }
- private Double? currencyCode;
- /// <summary>
- /// 币种代码
- /// </summary>
- public Double? CurrencyCode
- {
- set { currencyCode = value; }
- get { return currencyCode; }
- }
- private string exchangeRate;
- /// <summary>
- /// 兑换汇率
- /// </summary>
- public string ExchangeRate
- {
- set { exchangeRate = value; }
- get { return exchangeRate; }
- }
- private Double? primaryAmount;
- /// <summary>
- /// 原币金额
- /// </summary>
- public Double? PrimaryAmount
- {
- set { primaryAmount = value; }
- get { return primaryAmount; }
- }
- private Double? invoicedQty;
- /// <summary>
- /// 已结算量
- /// </summary>
- public Double? InvoicedQty
- {
- set { invoicedQty = value; }
- get { return invoicedQty; }
- }
- private Double? invoicedAmt;
- /// <summary>
- /// 已结算金额
- /// </summary>
- public Double? InvoicedAmt
- {
- set { invoicedAmt = value; }
- get { return invoicedAmt; }
- }
- private Double? bugPrice;
- /// <summary>
- /// 预算价
- /// </summary>
- public Double? BugPrice
- {
- set { bugPrice = value; }
- get { return bugPrice; }
- }
- private Double? expenseType;
- /// <summary>
- /// 费用类型
- /// </summary>
- public Double? ExpenseType
- {
- set { expenseType = value; }
- get { return expenseType; }
- }
- private string projectNo;
- /// <summary>
- /// 项目号
- /// </summary>
- public string ProjectNo
- {
- set { projectNo = value; }
- get { return projectNo; }
- }
- 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 invPosExecuteUser;
- /// <summary>
- /// 库区储位指定人
- /// </summary>
- public string InvPosExecuteUser
- {
- set { invPosExecuteUser = value; }
- get { return invPosExecuteUser; }
- }
- private DateTime? invPosExecuteDate;
- /// <summary>
- /// 库区储位指定日期
- /// </summary>
- public DateTime? InvPosExecuteDate
- {
- set { invPosExecuteDate = value; }
- get { return invPosExecuteDate; }
- }
- private DateTime? instockDate;
- /// <summary>
- /// 入库时间
- /// </summary>
- public DateTime? InstockDate
- {
- set { instockDate = value; }
- get { return instockDate; }
- }
- private string buyerDeptCode;
- /// <summary>
- /// 采购管理部门代码
- /// </summary>
- public string BuyerDeptCode
- {
- set { buyerDeptCode = value; }
- get { return buyerDeptCode; }
- }
- private string buyerDeptDesc;
- /// <summary>
- /// 采购管理部门描叙
- /// </summary>
- public string BuyerDeptDesc
- {
- set { buyerDeptDesc = value; }
- get { return buyerDeptDesc; }
- }
- /// <summary>
- /// 检验人工号
- /// </summary>
- private string checkUserName;
- public string CheckUserName
- {
- get { return checkUserName; }
- set { checkUserName = value; }
- }
- private string putawayCreatorUser;
- /// <summary>
- /// 入库单创建者
- /// </summary>
- public string PutawayCreatorUser
- {
- set { putawayCreatorUser = value; }
- get { return putawayCreatorUser; }
- }
- 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 string companyCode;
- /// <summary>
- /// 公司代码
- /// </summary>
- public string CompanyCode
- {
- set { companyCode = value; }
- get { return companyCode; }
- }
- private string companyName;
- /// <summary>
- /// 公司中文名称
- /// </summary>
- public string CompanyName
- {
- set { companyName = value; }
- get { return companyName; }
- }
- private string remark;
- /// <summary>
- /// 备注
- /// </summary>
- public string Remark
- {
- set { remark = value; }
- get { return remark; }
- }
- private string reviewState;
- /// <summary>
- /// 审批状态
- /// </summary>
- public string ReviewState
- {
- set { reviewState = value; }
- get { return reviewState; }
- }
- 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 createUserid;
- /// <summary>
- /// 创建人ID
- /// </summary>
- public string CreateUserid
- {
- set { createUserid = value; }
- get { return createUserid; }
- }
- 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 updateUserid;
- /// <summary>
- /// 修改人ID
- /// </summary>
- public string UpdateUserid
- {
- set { updateUserid = value; }
- get { return updateUserid; }
- }
- 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 deleteUserid;
- /// <summary>
- /// 废除人ID
- /// </summary>
- public string DeleteUserid
- {
- set { deleteUserid = value; }
- get { return deleteUserid; }
- }
- 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 Double? recQty;
- /// <summary>
- /// 实际收货量
- /// </summary>
- public Double? RecQty
- {
- set { recQty = value; }
- get { return recQty; }
- }
- private string result;
- /// <summary>
- /// 检验结果
- /// </summary>
- public string Result
- {
- set { result = value; }
- get { return result; }
- }
- private Double? recPassQty;
- /// <summary>
- /// 合格收货量
- /// </summary>
- public Double? RecPassQty
- {
- set { recPassQty = value; }
- get { return recPassQty; }
- }
- private Double? asnQty;
- /// <summary>
- /// 应到货量
- /// </summary>
- public Double? AsnQty
- {
- set { asnQty = value; }
- get { return asnQty; }
- }
- private string packageType;
- /// <summary>
- /// 包装方式
- /// </summary>
- public string PackageType
- {
- set { packageType = value; }
- get { return packageType; }
- }
- private string packageUnit;
- /// <summary>
- /// 包装单位
- /// </summary>
- public string PackageUnit
- {
- set { packageUnit = value; }
- get { return packageUnit; }
- }
- private Double? unitWeight;
- /// <summary>
- /// 每袋重量
- /// </summary>
- public Double? UnitWeight
- {
- set { unitWeight = value; }
- get { return unitWeight; }
- }
- private Double? kzQty;
- /// <summary>
- /// 扣杂量
- /// </summary>
- public Double? KzQty
- {
- set { kzQty = value; }
- get { return kzQty; }
- }
- private Double? jlQty;
- /// <summary>
- /// 计量结果
- /// </summary>
- public Double? JlQty
- {
- set { jlQty = value; }
- get { return jlQty; }
- }
- private string packageQty;
- /// <summary>
- /// 包装数
- /// </summary>
- public string PackageQty
- {
- set { packageQty = value; }
- get { return packageQty; }
- }
- private Double? deduction2;
- /// <summary>
- /// 扣机铁
- /// </summary>
- public Double? Deduction2
- {
- set { deduction2 = value; }
- get { return deduction2; }
- }
- private Double? deduction3;
- /// <summary>
- /// 扣超长
- /// </summary>
- public Double? Deduction3
- {
- set { deduction3 = value; }
- get { return deduction3; }
- }
- private Double? deduction4;
- /// <summary>
- /// 扣轻薄
- /// </summary>
- public Double? Deduction4
- {
- set { deduction4 = value; }
- get { return deduction4; }
- }
- private string purLineId;
- /// <summary>
- /// 采购计划行号
- /// </summary>
- public string PurLineId
- {
- set { packageQty = value; }
- get { return packageQty; }
- }
- private String[] purLineIds;
- /// <summary>
- /// 采购计划行号数组
- /// </summary>
- public String[] PurLineIds
- {
- get { return purLineIds; }
- set { purLineIds = value; }
- }
- private string isPrint;
- /// <summary>
- /// 是否已打印入库单
- /// </summary>
- public string IsPrint
- {
- set { isPrint = value; }
- get { return isPrint; }
- }
- private string matBatchNo;
- /// <summary>
- /// 物料批号
- /// </summary>
- public string MatBatchNo
- {
- set { matBatchNo = value; }
- get { return matBatchNo; }
- }
-
- private string checkNo;
- /// <summary>
- /// 检验批号
- /// </summary>
- public string CheckNo
- {
- get { return checkNo; }
- set { checkNo = value; }
- }
- private string batchNo;
- /// <summary>
- /// 生产批次
- /// </summary>
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
-
- private string printCode;
- /// <summary>
- /// 打印编号
- /// </summary>
- public string PrintCode
- {
- get { return printCode; }
- set { printCode = 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[] deliverySubLineSqes;
- public String[] DeliverySubLineSqes
- {
- get { return deliverySubLineSqes; }
- set { deliverySubLineSqes = value; }
- }
- private Double? gross;
- /// <summary>
- /// 毛重
- /// </summary>
- public Double? Gross
- {
- set { gross = value; }
- get { return gross; }
- }
- private Double? tare;
- /// <summary>
- /// 皮重
- /// </summary>
- public Double? Tare
- {
- set { tare = value; }
- get { return tare; }
- }
- private DateTime? suttletime;
- /// <summary>
- /// 净重时间
- /// </summary>
- public DateTime? Suttletime
- {
- set { suttletime = value; }
- get { return suttletime; }
- }
- private string carNum;
- /// <summary>
- /// 车牌号
- /// </summary>
- public string CarNum
- {
- set { carNum = value; }
- get { return carNum; }
- }
- private string unit;
- /// <summary>
- /// 科室
- /// </summary>
- public string Unit
- {
- set { unit = value; }
- get { return unit; }
- }
- private string basePriceName;
- /// <summary>
- /// 价格政策名称
- /// </summary>
- public string BasePriceName
- {
- set { basePriceName = value; }
- get { return basePriceName; }
- }
- private string basePriceId;
- /// <summary>
- /// 价格政策id
- /// </summary>
- public string BasePriceId
- {
- set { basePriceId = value; }
- get { return basePriceId; }
- }
- private Double? txtLEN_DEDUCT_PRICE;
- /// <summary>
- /// 超长扣减
- /// </summary>
- public Double? TxtLEN_DEDUCT_PRICE
- {
- set { txtLEN_DEDUCT_PRICE = value; }
- get { return txtLEN_DEDUCT_PRICE; }
- }
- private Double? txt_honour;
- /// <summary>
- /// 承兑加价
- /// </summary>
- public Double? Txt_honour
- {
- set { txt_honour = value; }
- get { return txt_honour; }
- }
- private Double? txt_volume;
- /// <summary>
- /// 保量加价
- /// </summary>
- public Double? Txt_volume
- {
- set { txt_volume = value; }
- get { return txt_volume; }
- }
- private Double? txt_check;
- /// <summary>
- /// 考核
- /// </summary>
- public Double? Txt_check
- {
- set { txt_check = value; }
- get { return txt_check; }
- }
- }
- }
|