분리후 첫 Crawling 성공 모델
This commit is contained in:
11
OpcPksPlatform/OpcPks.Core/Models/TagMaster.cs
Normal file
11
OpcPksPlatform/OpcPks.Core/Models/TagMaster.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace OpcPks.Core.Models;
|
||||
|
||||
public class TagMaster
|
||||
{
|
||||
public string TagName { get; set; } = string.Empty;
|
||||
public string FullNodeId { get; set; } = string.Empty; // NodeId 대신 크롤러가 찾는 이름
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public string DataType { get; set; } = string.Empty;
|
||||
public string NodeClass { get; set; } = string.Empty; // 추가
|
||||
public int Level { get; set; } // string에서 int로 변경 (크롤러 연산용)
|
||||
}
|
||||
Reference in New Issue
Block a user