| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- 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; }
- }
- }
- }
|