首次提交:添加src文件夹代码
This commit is contained in:
24
Cowain.Bake.Model/Entity/StorageArea.cs
Normal file
24
Cowain.Bake.Model/Entity/StorageArea.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user