using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Pur.Entity.configureEntity { [Serializable] public class PurTaskCEntity : MatAttr { private string taskLineId; /// /// 主键 /// public string TaskLineId { set { taskLineId = value; } get { return taskLineId; } } 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 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 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 expenseType; /// /// 费用类型 /// public string ExpenseType { set { expenseType = value; } get { return expenseType; } } private string budgetCode; /// /// 预算类型 /// public string BudgetCode { set { budgetCode = value; } get { return budgetCode; } } private Double? bugPrice; /// /// 计划价 /// public Double? BugPrice { set { bugPrice = value; } get { return bugPrice; } } private Double? budgetAmt; /// /// 预算金额 /// public Double? BudgetAmt { set { budgetAmt = value; } get { return budgetAmt; } } private Double? bidPrice; /// /// 中标价 /// public Double? BidPrice { set { bidPrice = value; } get { return bidPrice; } } private string bidPriceReason; /// /// 中标价理由 /// public string BidPriceReason { set { bidPriceReason = value; } get { return bidPriceReason; } } private Double? lastPrice; /// /// 最近采购价 /// public Double? LastPrice { set { lastPrice = value; } get { return lastPrice; } } private Double? pickAmt; /// /// 询单金额 /// public Double? PickAmt { set { pickAmt = value; } get { return pickAmt; } } private Double? pickQty; /// /// 采购数量 /// public Double? PickQty { set { pickQty = value; } get { return pickQty; } } private DateTime? askDeliverDate; /// /// 要求交货日期 /// public DateTime? AskDeliverDate { set { askDeliverDate = value; } get { return askDeliverDate; } } 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 companyCode; /// /// 公司代码 /// public string CompanyCode { set { companyCode = value; } get { return companyCode; } } private string companyName; /// /// 公司中文名称 /// public string CompanyName { set { companyName = value; } get { return companyName; } } private string remark; /// /// 备注 /// public string Remark { set { remark = value; } get { return remark; } } private string taskCode; /// /// 任务号 /// public string TaskCode { set { taskCode = value; } get { return taskCode; } } 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 mrId; /// /// 采购单号 /// public String MrId { get { return mrId; } set { mrId = value; } } private string packageType; /// /// 包装方式 /// public string PackageType { set { packageType = value; } get { return packageType; } } private string paymentCode; /// /// 付款方式 /// public string PaymentCode { set { paymentCode = value; } get { return paymentCode; } } private Double? qtyPur; /// /// 任务单原始数量 /// public Double? QtyPur { set { qtyPur = value; } get { return qtyPur; } } private string priceVersionNo; /// /// 价格政策版本 /// public string PriceVersionNo { set { priceVersionNo = value; } get { return priceVersionNo; } } } }