Files
AUTS_Desktop_Prod/AUTS_DataService/UtsGroup/ServiceGroup.vb
MomoWen 027d0f8024 初始化提交
仓库转移到Gitea,初始化提交,可能丢失以前的git版本日志
2025-11-27 16:41:05 +08:00

32 lines
719 B
VB.net

Public Class ServiceGroup
Sub New()
'Fileds = New Dictionary(Of String, String)
End Sub
''' <summary>
''' 当前服务所属子网组
''' </summary>
''' <returns></returns>
Public Property ServiceGroup As String
''' <summary>
''' 当前服务索引
''' </summary>
''' <returns></returns>
Public Property ServiceIndex As Integer
''' <summary>
''' 当前命令类型
''' </summary>
''' <returns></returns>
Public Property Type As String
''' <summary>
''' 当前包号
''' </summary>
''' <returns></returns>
Public Property Index As Integer
Public Property GroupInfo As New Dictionary(Of String, String)
End Class