You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
namespace Haoliang.Models.Device
{
public class CNCDevice
{
public int Id { get; set; }
public int DeviceId { get => Id; set => Id = value; }
public string DeviceCode { get; set; }
public string DeviceName { get; set; }
public string IPAddress { get; set; }
public string HttpUrl { get; set; }
public int CollectionInterval { get; set; }
public int TemplateId { get; set; }
public bool IsAvailable { get; set; }
public bool IsOnline { get; set; }
public DateTime LastCollectionTime { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}
public enum DeviceStatus
{
Online = 1,
Offline = 2,
Running = 3,
Stopped = 4,
Error = 5,
Maintenance = 6
}
public class DeviceCurrentStatus
{
public int DeviceId { get; set; }
public string DeviceCode { get; set; }
public string DeviceName { get; set; }
public bool IsOnline { get; set; }
public bool IsAvailable { get; set; }
public string Status { get; set; }
public bool IsRunning { get; set; }
public string NCProgram { get; set; }
public int CumulativeCount { get; set; }
public string OperatingMode { get; set; }
public DateTime RecordTime { get; set; }
public List<TagData> Tags { get; set; }
}
public class TagData
{
public string Id { get; set; }
public string Desc { get; set; }
public string Quality { get; set; }
public object Value { get; set; }
public DateTime Time { get; set; }
}
}