初始化

This commit is contained in:
2025-12-11 10:52:49 +08:00
commit 6d5b527e22
867 changed files with 983119 additions and 0 deletions

24
InfoNode.vb Normal file
View File

@@ -0,0 +1,24 @@
Public Class RedisInfoNode
'拼版名称
Public Property RedisName As String
'调用这名称
Public Property CallName As String
'调用起始时间
Public Property CallStartTime As DateTime
'调用结束时间
Public Property CallEndTime As DateTime
'主要模板名称
Public Property TemplateName As String
'素材库名称
Public Property MaterialLibName As String
'素材库版本
Public Property MaterialLibVersion As String
''素材键字典集合 素材位置对象-素材名称
Public Property MaterialKeys As Dictionary(Of String, String)
End Class