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.

31 lines
706 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CentralControl.BaseData
{
public class PlcSetting
{
public int Id { get; set; }
/// <summary>
/// plc编码
/// </summary>
public string PlcNo{ get; set; }
/// <summary>
/// 地址位
/// </summary>
public string PlcAddress{ get; set; }
/// <summary>
/// 地址位长度
/// </summary>
public string PlcValueLength{ get; set; }
/// <summary>
/// 数据类型
/// </summary>
public int PlcDataType{ get; set; }
//public virtual ICollection<NodeSetting> NodeSetting { get; set; }
}
}