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 { /// /// 接口信息 /// [SugarTable(nameof(Dt_AGVStationInfo), "AGV站点信息表")] public class Dt_AGVStationInfo : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int Id { get; set; } /// /// AGV站点编号 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "AGV站点编号")] public string AGVStationCode { get; set; } /// /// AGV站点取放高度 /// [SugarColumn(IsNullable = true, ColumnDescription = "AGV站台取放高度")] public decimal AGVStationHeight { get; set; } /// /// 前置点 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "前置点")] public string AGVFrontCode { get; set; } /// /// 区域 /// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "区域")] public int StationArea { get; set; } /// /// 备注 /// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "备注")] public string Remark { get; set; } } }