巨石化纤
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB

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