3
肖洋
2024-11-25 7202fced2a265369f83f1557d3db7525bb62d41b
Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_StationManager.cs
@@ -17,16 +17,11 @@
using Magicodes.ExporterAndImporter.Core;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
namespace WIDESEAWCS_Model.Models
{
    [SugarTable(nameof(Dt_StationManager), "任务信息")]
    [SugarTable(nameof(Dt_StationManager), "站台信息")]
    public class Dt_StationManager : BaseEntity
    {
        /// <summary>
@@ -38,7 +33,7 @@
        public int stationID { get; set; }
        /// <summary>
        /// 站台类型
        /// 站台类型  1-入库站台 2-出库站台 3-异常排出站台 4-NG工站放料 5-NG工站取料 6-空框入库 7-空框出库
        /// </summary>
        [ImporterHeader(Name = "站台类型")]
        [ExporterHeader(DisplayName = "站台类型")]
@@ -100,5 +95,21 @@
        [ExporterHeader(DisplayName = "MOM设备编号")]
        [SugarColumn(IsNullable = false, ColumnDescription = "MOM设备编号")]
        public string stationEquipMOM { get; set; }
        /// <summary>
        ///
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "NG子设备编号")]
        public string stationNGChildCode { get; set; }
        /// <summary>
        ///
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "NG子设备坐标")]
        public string stationNGLocation { get; set; }
        public string remark { get; set; }
        public string stationStatus { get; set; }
    }
}