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.
37 lines
818 B
37 lines
818 B
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WMS_GIRAF_Interface.Entities;
|
|
|
|
[Table("V_WH_CELL_ENABLE")]
|
|
public class V_WH_CELL_ENABLE
|
|
{
|
|
[Column("PRIORITY")]
|
|
public int PRIORITY { get; set; }
|
|
|
|
[Column("YPRIORITY")]
|
|
public int YPRIORITY { get; set; }
|
|
|
|
[Column("CELL_ID")]
|
|
public int CELL_ID { get; set; }
|
|
|
|
[Column("CELL_TYPE")]
|
|
public string CELL_TYPE { get; set; }
|
|
|
|
[Column("CELL_STATUS")]
|
|
public string CELL_STATUS { get; set; }
|
|
|
|
[Column("RUN_STATUS")]
|
|
public string RUN_STATUS { get; set; }
|
|
|
|
[Column("CELL_CODE")]
|
|
public string CELL_CODE { get; set; }
|
|
|
|
[Column("CELL_X")]
|
|
public int CELL_X { get; set; }
|
|
|
|
[Column("CELL_Y")]
|
|
public int CELL_Y { get; set; }
|
|
|
|
[Column("LANE_WAY")]
|
|
public string LANE_WAY { get; set; }
|
|
}
|