using Cowain.Bake.Model.Models; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Cowain.Bake.Model.Entity { public class StorageArea { public int Id { get; set; } public int StationId { get; set; } public string AddressType { get; set; } public string StartAddress { get; set; } //HSL通过这个地址去读 public List Addresses = new List(); //OPC通过这个节点去读 public List OPCNodes = new List(); //OPC通过这个节点去读 public string ReadAddress { get; set; } public int Len { get; set; } public List VariableList { get; set; } = new List(); } }