| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- using System;
- using System.Text;
- namespace com.hnshituo.pur.vo
- {
- [Serializable]
- public class ActualSeatPosEntity
- {
- /** 主键 */
- private string id;
- public string Id
- {
- get { return id; }
- set { id = 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; }
- }
- /** 库位编号 */
- private string invPos;
- public string InvPos
- {
- get { return invPos; }
- set { invPos = value; }
- }
- /** 库位名称 */
- private string invPosName;
- public string InvPosName
- {
- get { return invPosName; }
- set { invPosName = value; }
- }
- /** 备注 */
- private string remark;
- public string Remark
- {
- get { return remark; }
- set { remark = 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; }
- }
- /** 创建人ID */
- private string createUserid;
- public string CreateUserid
- {
- get { return createUserid; }
- set { createUserid = value; }
- }
- /** 废除人ID */
- private string deleteUserid;
- public string DeleteUserid
- {
- get { return deleteUserid; }
- set { deleteUserid = 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; }
- }
- }
- }
|