34 lines
714 B
VB.net
34 lines
714 B
VB.net
Namespace UTSModule.Station
|
|
Public Class RowNodeChangedEventArgs
|
|
Inherits EventArgs
|
|
|
|
Enum RowNodeChangeType
|
|
None
|
|
RowType
|
|
Action
|
|
SaveToDb
|
|
RecordName
|
|
Retry
|
|
RetryInterval
|
|
[Label]
|
|
ControlType
|
|
Description
|
|
ErrorCode
|
|
ErrorMessage
|
|
CommandType
|
|
Command
|
|
Parameters
|
|
End Enum
|
|
|
|
''' <summary>
|
|
''' 修改后的节点
|
|
''' </summary>
|
|
''' <returns></returns>
|
|
Public Property Node() As RowNode
|
|
|
|
Public Property ChangeType() As RowNodeChangeType
|
|
End Class
|
|
|
|
|
|
|
|
End Namespace |