1、初始化仓库

This commit is contained in:
2025-05-19 14:06:21 +08:00
commit 8a1d028f3e
28 changed files with 3832 additions and 0 deletions

View File

@ -0,0 +1,7 @@
Public Class AppVersion
'版本信息'
Public Property version As String
'文件地址'
Public Property path As String
End Class

24
Yjpp36/dtos/Config.vb Normal file
View File

@ -0,0 +1,24 @@
Public Class SetConfig
'设备编号'
Public Property MachineId As String
'设备唯一码(网卡信息)'
Public Property BiosId As String
'心跳时间间隔(秒)'
Public Property Heart As String
'关键字心跳(秒)'
Public Property KeywordHeart As String
'进程限制 1-限制 2-不限制 3-只记录'
Public Property TaskLimit As Integer
'应用限制 1-是 2-否'
Public Property AppLimit As Integer
'是否开启关键字采集 1-是 2-否 '
Public Property Keyword As Integer
'拦截时间间隔'
Public Property InterceptTimeInterval As Double
End Class

View File

@ -0,0 +1,6 @@
Public Class KeywordItemReq
'类型 0-关键字 1-长度限制'
Public Property type As Integer
Public Property content As String
End Class

View File

@ -0,0 +1,10 @@
Public Class KeywordItem
'关键字'
Public Property k As String()
'内容长度'
Public Property l As String()
'内容长度 忽略符号、空格、换行'
Public Property li As String()
End Class

47
Yjpp36/dtos/Result.vb Normal file
View File

@ -0,0 +1,47 @@
'获取密码返回'
Public Class PasswordResult
Public Property code As String
Public Property msg As String
Public Property data As String
End Class
'白名单数据返回'
Public Class MahineWhiteResult
Public Property code As String
Public Property msg As String
Public Property data As String
End Class
''' <summary>
''' 心跳返回数据
''' </summary>
Public Class HeartResult
'code 0-成功 1-失败'
Public Property code As Integer
'msg 错误消息'
Public Property msg As String
'进程限制'
Public Property c As String
'应用限制'
Public Property g As String
'进程限制 1-限制 2-不限制'
Public Property tl As Integer
'应用限制 1-限制 2-不限制'
Public Property al As Integer
'心跳间隔(秒)'
Public Property hi As Integer
'关键字心跳(秒)'
Public Property ki As Integer
'关键字过滤 1-开启 2-关闭'
Public Property kl As Integer
'拦截日志间隔'
Public Property ii As Double
'是否重启电脑'
Public Property rb As Boolean
End Class