25 lines
831 B
C#
25 lines
831 B
C#
|
|
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<string> Addresses = new List<string>(); //OPC通过这个节点去读
|
|
public List<string> OPCNodes = new List<string>(); //OPC通过这个节点去读
|
|
public string ReadAddress { get; set; }
|
|
public int Len { get; set; }
|
|
public List<Variable> VariableList { get; set; } = new List<Variable>();
|
|
}
|
|
}
|