using System; using System.Collections.Generic; using System.Linq; using System.Text; using com.hnshituo.pur.vo; namespace Pur.Entity.pur_planEntity { [Serializable] public class PurTaskMEntity:BaseBpmVo { private string taskId; /// /// 任务编号 /// public string TaskId { set { taskId = value; } get { return taskId; } } private string pickMode; /// /// 报价类型0:单独报价;1:批量报价 /// public string PickMode { set { pickMode = value; } get { return pickMode; } } private Double? pickAmt; /// /// 询价总金额 /// public Double? PickAmt { set { pickAmt = value; } get { return pickAmt; } } private string flowType; /// /// 招标流程 /// public string FlowType { set { flowType = value; } get { return flowType; } } private DateTime? offerTimeStart; /// /// 报价开始时间 /// public DateTime? OfferTimeStart { set { offerTimeStart = value; } get { return offerTimeStart; } } private DateTime? offerTimeEnd; /// /// 报价结束时间 /// public DateTime? OfferTimeEnd { set { offerTimeEnd = value; } get { return offerTimeEnd; } } private string bidOpenAddr; /// /// 开标地点 /// public string BidOpenAddr { set { bidOpenAddr = value; } get { return bidOpenAddr; } } private string bidOpenUserid; /// /// 开标人 /// public string BidOpenUserid { set { bidOpenUserid = value; } get { return bidOpenUserid; } } private string bidOpenUsername; /// /// 开标人名称 /// public string BidOpenUsername { set { bidOpenUsername = value; } get { return bidOpenUsername; } } private DateTime? bidOpenTime; /// /// 开标时间 /// public DateTime? BidOpenTime { set { bidOpenTime = value; } get { return bidOpenTime; } } private DateTime? bidCloseTime; /// /// 任务关闭时间 /// public DateTime? BidCloseTime { set { bidCloseTime = value; } get { return bidCloseTime; } } 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 isAllowSplit; public string IsAllowSplit { get { return isAllowSplit; } set { isAllowSplit = value; } } 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 status; /// /// 状态1:未竞标 2:报价中3:待开标 4:评标中 5:待供应商确认 6:待供应部确认 7:已确认8:已关闭 /// public string Status { set { status = value; } get { return status; } } 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 taskName; /// /// 任务名称 /// public string TaskName { set { taskName = value; } get { return taskName; } } private string mrId; /// /// 任务单号 /// public string MrId { set { mrId = value; } get { return mrId; } } private string abolishStatus; /// /// 废标前状态 /// public string AbolishStatus { set { abolishStatus = value; } get { return abolishStatus; } } private string abolishName; /// /// 废标人 /// public string AbolishName { set { abolishName = value; } get { return abolishName; } } private DateTime? abolishTime; /// /// 废标时间 /// public DateTime? AbolishTime { set { abolishTime = value; } get { return abolishTime; } } private string abolishId; /// /// 废标ID /// public string AbolishId { set { abolishId = value; } get { return abolishId; } } private string deliveryCondition; /// /// 运输条件 /// public string DeliveryCondition { set { deliveryCondition = value; } get { return deliveryCondition; } } private string deliveryType; /// /// 运输类型 /// public string DeliveryType { set { deliveryType = value; } get { return deliveryType; } } private string receiveType; /// /// 接收方式 /// public string ReceiveType { set { receiveType = value; } get { return receiveType; } } private string priceVersionNo; /// /// 价格政策版本 /// public string PriceVersionNo { set { priceVersionNo = value; } get { return priceVersionNo; } } private string isSupervision; /// /// 取消监察 /// public string IsSupervision { get { return isSupervision; } set { isSupervision = value; } } private string functionVersionNo; /// /// 招标方案(功能性招标) /// public string FunctionVersionNo { get { return functionVersionNo; } set { functionVersionNo = value; } } private string functionVersionName; /// /// 招标方案(功能性招标)名称 /// public string FunctionVersionName { get { return functionVersionName; } set { functionVersionName = value; } } } }