using System; using System.Text; namespace Pur.Entity.configureEntity { [Serializable] public class DeliveryLocationDz { /** 交付地点编码 */ private string deliveryLocationCode; public string DeliveryLocationCode { get { return deliveryLocationCode; } set { deliveryLocationCode = value; } } /** 交付地点 */ private string deliveryLocation; public string DeliveryLocation { get { return deliveryLocation; } set { deliveryLocation = value; } } /** 机构ID */ private string orgId; public string OrgId { get { return orgId; } set { orgId = value; } } /** 机构名称 */ private string orgName; public string OrgName { get { return orgName; } set { orgName = value; } } /** 是否为默认值 */ private string isDefault; public string IsDefault { get { return isDefault; } set { isDefault = value; } } /** 所属人ID */ private string ownerUserid; public string OwnerUserid { get { return ownerUserid; } set { ownerUserid = value; } } /** 所属人姓名 */ private string ownerName; public string OwnerName { get { return ownerName; } set { ownerName = 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; } } /** 关联库区 */ private string invPhysic; public string InvPhysic { get { return invPhysic; } set { invPhysic = value; } } /** 关联库区名称 */ private string invPhysicName; public string InvPhysicName { get { return invPhysicName; } set { invPhysicName = value; } } /** 是否为JIT交付地址*/ private string isJit; public string IsJit { get { return isJit; } set { isJit = value; } } } }