| | |
| | | |
| | | 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> |
| | |
| | | public int stationID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 站台类型 |
| | | /// 站台类型 1-入库站台 2-出库站台 3-异常排出站台 4-NG工站放料 5-NG工站取料 6-空框入库 7-空框出库,8-入库线体扫码确认,9-入库站台确认 |
| | | /// </summary> |
| | | [ImporterHeader(Name = "站台类型")] |
| | | [ExporterHeader(DisplayName = "站台类型")] |
| | |
| | | [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; } |
| | | |
| | | } |
| | | } |