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.

55 lines
1.2 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// <auto-generated> This file has been auto generated by EF Core Power Tools. </auto-generated>
#nullable disable
using System;
using System.Collections.Generic;
namespace CVDEMCS.Services.Models;
/// <summary>
/// PLC控制器
/// </summary>
public partial class DeviceInfo
{
public string Id { get; set; }
/// <summary>
/// 控制器编号
/// </summary>
public string DeviceCode { get; set; }
/// <summary>
/// 控制器名称
/// </summary>
public string DeviceName { get; set; }
/// <summary>
/// 控制器状态,1启用0停用
/// </summary>
public bool Activated { get; set; }
/// <summary>
/// 控制器协议:PLC,HTTP,Socket
/// </summary>
public string Protocol { get; set; }
/// <summary>
/// 控制器主机地址
/// </summary>
public string Host { get; set; }
/// <summary>
/// 控制器主机端口
/// </summary>
public int Port { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 设备连接状态
/// </summary>
public Boolean isConnected { get; set; }
}