using System; namespace SSWMS.Common { [Serializable] public class WH_CELL { public int CELL_ID { get; set; } public string WAREHOUSE_CODE { get; set; } public string CELL_NAME { get; set; } public string CELL_CODE { get; set; } public string CELL_CODE_P { get; set; } public string CELL_TYPE { get; set; } public string FORK_TYPE { get; set; } public string DEVICE_CODE { get; set; } public int CELL_Z { get; set; } public int CELL_X { get; set; } public int CELL_Y { get; set; } public int CELL_WIDTH { get; set; } public int CELL_HEIGHT { get; set; } public string CELL_MODEL { get; set; } public string CELL_REMARK { get; set; } public string CELL_FLAG { get; set; } public int STORAGE_ID { get; set; } public int GOODS_ID { get; set; } public int MANAGE_ID { get; set; } public string CELL_FLAG_P { get; set; } public int STORAGE_ID_P { get; set; } public int MANAGE_ID_P { get; set; } } }