| | |
| | | /// <summary> |
| | | /// 设备信息表 |
| | | /// </summary> |
| | | [SugarTable("WCSPLCDevice","设备信息表")] |
| | | public class WcsDevice : EntityBaseData |
| | | [SugarTable("WCSPLCDevice", "设备信息表")] |
| | | public class WcsDevice : EntityBaseData |
| | | { |
| | | /// <summary> |
| | | /// PlcId |
| | |
| | | [Required] |
| | | [SugarColumn(ColumnName = "PosType", ColumnDescription = "流程字类型")] |
| | | public PLCDataTypeEnum PosType { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 显示屏ip地址 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "LedIP", ColumnDescription = "显示屏ip地址", Length = 50)] |
| | | public string? LedIP { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 描述 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "Text", ColumnDescription = "描述", Length = 20)] |
| | | public string? Text { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 位置有物品 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public bool BoHaveItem { get; set; } |
| | | /// <summary> |
| | | /// 高度 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public int BoxHeight { get; set; } |
| | | /// <summary> |
| | | /// 目的工位 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string EndLocat { get; set; } |
| | | } |