using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models { /// /// AGV站点信息表 /// [SugarTable(nameof(Dt_AGVStationInfo), "AGV站点信息表")] public class Dt_AGVStationInfo : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int Id { get; set; } /// /// 站点编号 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "站点编号")] public string AGVStationCode { get; set; } /// /// 区域 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "区域")] public string StationArea { get; set; } /// /// MES对应周转位 /// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "MES对应周转位")] public string MESPointCode { get; set; } /// /// 深位 /// [SugarColumn(IsNullable = true, ColumnDescription = "深位")] public int Depth { get; set; } /// /// 是否占用 /// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "是否占用")] public int IsOccupied { get; set; } /// /// 备注 /// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "备注")] public string Remark { get; set; } } }