using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Pur.Entity.configureEntity { [Serializable] public class PhysicSeatEntity { /** 物理库区 */ private string invPhysic; public string InvPhysic { get { return invPhysic; } set { invPhysic = value; } } /** 物理库区名称 */ private string invPhysicName; public string InvPhysicName { get { return invPhysicName; } set { invPhysicName = value; } } /** 是否严格储位物理库区(1:是 0:否) */ private string isStrictBin; public string IsStrictBin { get { return isStrictBin; } set { isStrictBin = value; } } /** 所在区域 */ private string invLocation; public string InvLocation { get { return invLocation; } set { invLocation = value; } } /** 数据状态(有效、无效) */ private string validflag; public string Validflag { get { return validflag; } set { validflag = 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; } } //IS_JIT_CK private string isJitCk; public string IsJitCk { get { return isJitCk; } set { isJitCk = value; } } //IS_GYB_CK private string isGybCk; public string IsGybCk { get { return isGybCk; } set { isGybCk = value; } } //ORG_ID private string orgId; public string OrgId { get { return orgId; } set { orgId = value; } } //ORG_NAME private string orgName; public string OrgName { get { return orgName; } set { orgName = value; } } //成本中心 private string costCenter; public string CostCenter { get { return costCenter; } set { costCenter = value; } } } }