米其林项目Giraf的新接口,采用WebAPI形式,会应用在上海玉兰,印度米其林及波兰米其林项目中
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

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