using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Pur.Entity.configureEntity { [Serializable] public class PurTaskOfferCEntity:MatAttr { private string resRemark; /// /// 报价备注 /// public string ResRemark { set { resRemark = value; } get { return resRemark; } } private string bidReason; /// /// 中标理由 /// public string BidReason { set { bidReason = value; } get { return bidReason; } } private string isBid; /// /// 是否中标 /// public string IsBid { set { isBid = value; } get { return isBid; } } private string taskLineId; /// /// 任务单行号 /// public string TaskLineId { set { taskLineId = value; } get { return taskLineId; } } 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 string id; /// /// 主键 /// public string Id { set { id = value; } get { return id; } } private string taskId; /// /// 任务单号 /// public string TaskId { set { taskId = value; } get { return taskId; } } private string mrLineId; /// /// 采购单行号 /// public string MrLineId { set { mrLineId = value; } get { return mrLineId; } } private string offerId; /// /// 报价单ID /// public string OfferId { set { offerId = value; } get { return offerId; } } 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 itemModel; /// /// 物料型号规格 /// public string ItemModel { set { itemModel = value; } get { return itemModel; } } private string itemSpec; /// /// 物料材质 /// public string ItemSpec { set { itemSpec = value; } get { return itemSpec; } } private Double? qty; /// /// 数量 /// public Double? Qty { set { qty = value; } get { return qty; } } 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 DateTime? askDeliverDate; /// /// 要求交货日期 /// public DateTime? AskDeliverDate { set { askDeliverDate = value; } get { return askDeliverDate; } } private string currencyCode; /// /// 币种代码 /// public string CurrencyCode { set { currencyCode = value; } get { return currencyCode; } } private string taxRateName; /// /// 税率名称 /// public string TaxRateName { set { taxRateName = value; } get { return taxRateName; } } private Double? resQty; /// /// 报价数量 /// public Double? ResQty { set { resQty = value; } get { return resQty; } } private Double? resWithoutTaxPrice; /// /// 报价不含税单价 /// public Double? ResWithoutTaxPrice { set { resWithoutTaxPrice = value; } get { return resWithoutTaxPrice; } } private Double? resWithTaxPrice; /// /// 报价含税单价 /// public Double? ResWithTaxPrice { set { resWithTaxPrice = value; } get { return resWithTaxPrice; } } private Double? resWithoutTaxAmt; /// /// 报价不含税金额 /// public Double? ResWithoutTaxAmt { set { resWithoutTaxAmt = value; } get { return resWithoutTaxAmt; } } private Double? resWithTaxAmt; /// /// 报价含税金额 /// public Double? ResWithTaxAmt { set { resWithTaxAmt = value; } get { return resWithTaxAmt; } } private DateTime? resDate; /// /// 报价日期 /// public DateTime? ResDate { set { resDate = value; } get { return resDate; } } private DateTime? resValidDate; /// /// 报价有效日期 /// public DateTime? ResValidDate { set { resValidDate = value; } get { return resValidDate; } } private DateTime? resDeliverDate; /// /// 报价交货日期 /// public DateTime? ResDeliverDate { set { resDeliverDate = value; } get { return resDeliverDate; } } private string resContact; /// /// 报价联系人 /// public string ResContact { set { resContact = value; } get { return resContact; } } private string resPriceTerm; /// /// 报价价格条款 /// public string ResPriceTerm { set { resPriceTerm = value; } get { return resPriceTerm; } } private string resDesc; /// /// 报价描述 /// public string ResDesc { set { resDesc = value; } get { return resDesc; } } private string bidNo; /// /// 标段号 /// public string BidNo { set { bidNo = value; } get { return bidNo; } } private string bidEvalType; /// /// 评标类型 /// public string BidEvalType { set { bidEvalType = value; } get { return bidEvalType; } } private string bidWinReason; /// /// 中标理由 /// public string BidWinReason { set { bidWinReason = value; } get { return bidWinReason; } } private Double? bidWinWithoutTaxPrice; /// /// 中标不含税单价 /// public Double? BidWinWithoutTaxPrice { set { bidWinWithoutTaxPrice = value; } get { return bidWinWithoutTaxPrice; } } private Double? bidWinWithTaxPrice; /// /// 中标含税单价 /// public Double? BidWinWithTaxPrice { set { bidWinWithTaxPrice = value; } get { return bidWinWithTaxPrice; } } private string buyerName; /// /// 采购员 /// public string BuyerName { set { buyerName = value; } get { return buyerName; } } private string buyerDeptCode; /// /// 采购管理部门代码 /// public string BuyerDeptCode { set { buyerDeptCode = value; } get { return buyerDeptCode; } } private string buyerDeptDesc; /// /// 采购管理部门描叙 /// public string BuyerDeptDesc { set { buyerDeptDesc = value; } get { return buyerDeptDesc; } } private string buyerUnitCode; /// /// 采购管理科室代码 /// public string BuyerUnitCode { set { buyerUnitCode = value; } get { return buyerUnitCode; } } private string buyerUnitDesc; /// /// 采购管理科室描叙 /// public string BuyerUnitDesc { set { buyerUnitDesc = value; } get { return buyerUnitDesc; } } private string remark; /// /// 备注 /// public string Remark { set { remark = value; } get { return remark; } } private string reviewState; /// /// 评审状态 /// public string ReviewState { set { reviewState = value; } get { return reviewState; } } 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 packageType; public string PackageType { get { return packageType; } set { packageType = value; } } /// /// 付款方式 /// private string paymentCode; public string PaymentCode { get { return paymentCode; } set { paymentCode = value; } } /// /// 中标数量 /// private Double? bidWinQty; public Double? BidWinQty { get { return bidWinQty; } set { bidWinQty = value; } } /// /// 中标税额 /// private Double? bidWinTaxAmt; public Double? BidWinTaxAmt { get { return bidWinTaxAmt; } set { bidWinTaxAmt = value; } } /// /// 报价类型 /// private string offerType; public string OfferType { get { return offerType; } set { offerType = value; } } //运费单价 private Double? resPriceFreight; public Double? ResPriceFreight { get { return resPriceFreight; } set { resPriceFreight = value; } } //包装费用 private Double? resPricePackage; public Double? ResPricePackage { get { return resPricePackage; } set { resPricePackage = value; } } } }