using System; using System.Text; namespace Pur.Entity.require_planEntiy { [Serializable] public class UsePlanM { /** 领用计划单号 */ private string mrId; public string MrId { get { return mrId; } set { mrId = value; } } /** 计划类型 */ private string planType; public string PlanType { get { return planType; } set { planType = value; } } /** 班次 */ private string classes; public string Classes { get { return classes; } set { classes = value; } } /** 计划期间-开始 */ private DateTime? mrPeriodStart; public DateTime? MrPeriodStart { get { return mrPeriodStart; } set { mrPeriodStart = value; } } /** 计划期间-结束 */ private DateTime? mrPeriodEnd; public DateTime? MrPeriodEnd { get { return mrPeriodEnd; } set { mrPeriodEnd = value; } } /** 申请者机构ID */ private string reqOrgId; public string ReqOrgId { get { return reqOrgId; } set { reqOrgId = value; } } /** 申请者机构名称 */ private string reqOrgName; public string ReqOrgName { get { return reqOrgName; } set { reqOrgName = value; } } /** 申请者管理机构ID */ private string applyReqOrgId; public string ApplyReqOrgId { get { return applyReqOrgId; } set { applyReqOrgId = value; } } /** 申请者管理机构名称 */ private string applyReqOrgName; public string ApplyReqOrgName { get { return applyReqOrgName; } set { applyReqOrgName = value; } } /** 状态 */ private string status; public string Status { get { return status; } set { status = value; } } /** 确认人 */ private string confirmUserid; public string ConfirmUserid { get { return confirmUserid; } set { confirmUserid = value; } } /** 确认人姓名 */ private string confirmName; public string ConfirmName { get { return confirmName; } set { confirmName = value; } } /** 确认时间 */ private DateTime? confirmTime; public DateTime? ConfirmTime { get { return confirmTime; } set { confirmTime = value; } } /** 数据状态(有效、无效) */ private string validflag; public string Validflag { get { return validflag; } set { validflag = value; } } /** 申请人 */ private string applyName; public string ApplyName { get { return applyName; } set { applyName = value; } } /** 申请时间 */ private DateTime? applyTime; public DateTime? ApplyTime { get { return applyTime; } set { applyTime = value; } } /** 创建人 */ private string createName; public string CreateName { get { return createName; } set { createName = value; } } /** 创建时间 */ private DateTime? createTime; public DateTime? CreateTime { get { return createTime; } set { createTime = value; } } /** 修改人 */ private string updateName; public string UpdateName { get { return updateName; } set { updateName = value; } } /** 修改时间 */ private DateTime? updateTime; public DateTime? UpdateTime { get { return updateTime; } set { updateTime = value; } } /** 废除人 */ private string deleteName; public string DeleteName { get { return deleteName; } set { deleteName = value; } } /** 废除时间 */ private DateTime? deleteTime; public DateTime? DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /** 创建人ID */ private string createUserid; public string CreateUserid { get { return createUserid; } set { createUserid = value; } } /** 修改人ID */ private string updateUserid; public string UpdateUserid { get { return updateUserid; } set { updateUserid = value; } } /** 废除人ID */ private string deleteUserid; public string DeleteUserid { get { return deleteUserid; } set { deleteUserid = value; } } private string quitreson; /// /// 退回原因 /// public string Quitreson { set { quitreson = value; } get { return quitreson; } } private string invPhysic; /// /// 仓库 /// public string InvPhysic { set { invPhysic = value; } get { return invPhysic; } } /// /// 物料中类 /// private string itemClass; public string ItemClass { get { return itemClass; } set { itemClass = value; } } /// /// 车间 /// private string workShop; public string WorkShop { get { return workShop; } set { workShop = value; } } private string deliveryLocationCode; /// /// 配送地点编码 /// public string DeliveryLocationCode { set { deliveryLocationCode = value; } get { return deliveryLocationCode; } } private string deliveryLocation; /// /// 配送地点 /// public string DeliveryLocation { set { deliveryLocation = value; } get { return deliveryLocation; } } } }