首次提交:添加src文件夹代码

This commit is contained in:
2026-02-27 14:02:43 +08:00
commit d330cfbca7
4184 changed files with 5546478 additions and 0 deletions

View 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>();
}
}