liudl
2025-01-20 48d66a079c307356997fb400d27907ff6d363b7b
Admin.NET/WCS.Application/Entity/WcsDevice.cs
@@ -4,8 +4,8 @@
/// <summary>
/// 设备信息表
/// </summary>
[SugarTable("WCSPLCDevice","设备信息表")]
public class WcsDevice  : EntityBaseData
[SugarTable("WCSPLCDevice", "设备信息表")]
public class WcsDevice : EntityBaseData
{
    /// <summary>
    /// PlcId
@@ -62,17 +62,32 @@
    [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; }
}