File was renamed from Admin.NET/WCS.Application/Entity/WcsStation.cs |
| | |
| | | /// <summary> |
| | | /// 工位对应的流程字表 |
| | | /// </summary> |
| | | [SugarTable("WCSPLCStation","工位对应的流程字表")] |
| | | public class WcsStation : EntityBaseData |
| | | [SugarTable("WCSPLCPosition", "工位对应的流程字表")] |
| | | public class WcsPosition : EntityBaseData |
| | | { |
| | | /// <summary> |
| | | /// 设备ID |
| | |
| | | /// <summary> |
| | | /// 工位号 |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(ColumnName = "StationNum", ColumnDescription = "工位号", Length = 4)] |
| | | public string? StationNum { get; set; } |
| | | public string StationNum { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 偏移量 |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(ColumnName = "PlcPos", ColumnDescription = "偏移量", Length = 32)] |
| | | public string? PlcPos { get; set; } |
| | | public string PlcPos { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 流程字类型 |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(ColumnName = "PosType", ColumnDescription = "流程字类型")] |
| | | public PLCDataTypeEnum? PosType { get; set; } |
| | | public PLCDataTypeEnum PosType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 显示屏ip地址 |