hwh
2024-08-28 34044b791a62914aec56576f40d9de958c4f2bd4
Admin.NET/WCS.Application/Service/WcsDevice/Dto/WcsDeviceDto.cs
@@ -34,27 +34,27 @@
    /// <summary>
    /// DB区域
    /// </summary>
    public string? DbNumber { get; set; }
    public string DbNumber { get; set; }
    /// <summary>
    /// 工位号
    /// </summary>
    public string? StationNum { get; set; }
    public string StationNum { get; set; }
    /// <summary>
    /// PLC偏移量
    /// </summary>
    public string? PlcPos { get; set; }
    public string PlcPos { get; set; }
    /// <summary>
    /// WCS偏移量
    /// </summary>
    public string? WcsPos { get; set; }
    public string WcsPos { get; set; }
    /// <summary>
    /// 流程字类型
    /// </summary>
    public PLCDataTypeEnum? PosType { get; set; }
    public PLCDataTypeEnum PosType { get; set; }
    /// <summary>
    /// 显示屏ip地址
@@ -115,5 +115,6 @@
    public PLCUtil PLCUtil { get; set; }
    public List<WcsStation> listStation { get; set; }
    public List<WcsDevice> listDevice { get; set; }
    public List<WcsPosition> listStation { get; set; }
}