using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.Tenants;
namespace WIDESEAWCS_Model.Models
{
[SugarTable("AGVStation", "站台表")]
public class AGVStation
{
///
/// 站台ID
///
[SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "站台ID")]
public int Station_id { get; set; }
///
/// 设备信息
///
[SugarColumn( ColumnDescription = "设备信息")]
public string Station_code { get; set; }
///
/// 类型(1:入库,,2:出库)
///
[SugarColumn(Length = 50, ColumnDescription = "类型")]
public int Station_tasktype { get; set; }
///
/// 类型
///
[SugarColumn( ColumnDescription = "站台类型")]
public int Station_material { get; set; }
///
/// 是否启用
///
[SugarColumn( ColumnDescription = "是否启用")]
public int Station_enable { get; set; }
///
/// 区域(1-4为巷道,5:内侧RGV,,,6:外侧RGV)
///
[SugarColumn( ColumnDescription = "区域",IsNullable =true)]
public int Station_Area { get; set; }
///
/// 备注
///
[SugarColumn( Length = 50, ColumnDescription = "备注", IsNullable = true)]
public string Station_remark { get; set; }
///
/// 站台所属设备
///
[SugarColumn(Length = 50, ColumnDescription = "站台所属设备")]
public string ChildPosiDeviceCode { get; set; }
///
/// 过道地址母1
///
[SugarColumn(Length = 50, ColumnDescription = "过道地址母1")]
public int MotherCarDeviceCode { get; set; }
///
/// 过道地址母2
///
[SugarColumn(Length = 50, ColumnDescription = "过道地址母2")]
public int MotherCardeputy { get; set; }
///
/// 母地址(对标堆垛机取货口)
///
[SugarColumn(Length = 50, ColumnDescription = "母地址")]
public int Motherinlaw { get; set; }
///
/// 子地址(对标过道站台)
///
[SugarColumn(Length = 50, ColumnDescription = "子地址")]
public int ZicheMotherinlaw { get; set; }
///
/// HCJ存放点
///
[SugarColumn(Length = 50, ColumnDescription = "HCJ存放点")]
public int HCJStorageaddress { get; set; }
///
/// 等待点1
///
[SugarColumn(Length = 50, ColumnDescription = "等待点1")]
public int WaitmomentOne { get; set; }
///
/// 等待点2
///
[SugarColumn(Length = 50, ColumnDescription = "等待点2")]
public int WaitmomentTwo { get; set; }
}
}