using System; using System.Collections.Generic; using System.Linq; using System.Text; using com.hnshituo.pur.vo; namespace com.hnshituo.pur.purplan.vo { [Serializable] public class PurPlanM { 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 { set { mrId = value; } get { return mrId; } } private DateTime? mrPeriodStart; /// /// 计划期间-开始 /// public DateTime? MrPeriodStart { set { mrPeriodStart = value; } get { return mrPeriodStart; } } private DateTime? mrPeriodEnd; /// /// 计划期间-结束 /// public DateTime? MrPeriodEnd { set { mrPeriodEnd = value; } get { return mrPeriodEnd; } } private string urgencyType; /// /// 紧急程度类型,1:紧急 2:常规 /// public string UrgencyType { set { urgencyType = value; } get { return urgencyType; } } private string reqOrgId; /// /// 申请者机构ID /// public string ReqOrgId { set { reqOrgId = value; } get { return reqOrgId; } } private string reqOrgName; /// /// 申请者机构名称 /// public string ReqOrgName { set { reqOrgName = value; } get { return reqOrgName; } } private string applyReqOrgId; /// /// 申请者管理机构ID /// public string ApplyReqOrgId { set { applyReqOrgId = value; } get { return applyReqOrgId; } } private string applyReqOrgName; /// /// 申请者管理机构名称 /// public string ApplyReqOrgName { set { applyReqOrgName = value; } get { return applyReqOrgName; } } private string status; /// /// 状态 1:待提报 2:审批中3:已审批 /// 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 planType; /// /// 废除人 /// public string PlanType { set { planType = value; } get { return planType; } } private string purType; /// /// 废除人 /// public string PurType { set { purType = value; } get { return purType; } } private string budgetAmt; public string BudgetAmt { get { return budgetAmt; } set { budgetAmt = value; } } 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; } } } }