107 lines
4.2 KiB
Go
107 lines
4.2 KiB
Go
package request
|
|
|
|
// rcud 0123
|
|
const (
|
|
|
|
/***** 用户接口 *****/
|
|
|
|
QueryUser ActionNum = 90000 // 用户查询
|
|
|
|
CreateUser ActionNum = 90100 // 用户新增
|
|
|
|
UpdateUser ActionNum = 90200 // 用户修改
|
|
UpdateUserPassword ActionNum = 90201 // 用户密码修改
|
|
|
|
DeleteUser ActionNum = 90300 // 用户删除
|
|
|
|
/***** 登录接口 *****/
|
|
|
|
LoginStatus ActionNum = 50000 // 登录状态
|
|
Logout ActionNum = 50002 // 登出请求
|
|
|
|
/***** 系统接口 *****/
|
|
|
|
QueryInfo ActionNum = 57000 // 查询信息
|
|
QueryNet ActionNum = 57001 // 查询网络
|
|
QueryCom ActionNum = 57002 // 查询串口
|
|
|
|
UpdateNet ActionNum = 57201 // 更新网络
|
|
|
|
Reboot ActionNum = 57202 // 重启网关
|
|
|
|
/***** 模板接口 *****/
|
|
|
|
QueryAllTemplates ActionNum = 53000 // 查询模板
|
|
CreateTemplate ActionNum = 53100 // 新增模板
|
|
UpdateTemplate ActionNum = 53200 // 更新模板
|
|
DeleteTemplate ActionNum = 53300 // 删除模板
|
|
QueryTemplateSupportType ActionNum = 53001 // 查询支持的模板类型
|
|
|
|
/***** 模板点位接口 *****/
|
|
|
|
QueryTemplatePoint ActionNum = 53010 // 查询模板下的点位
|
|
CreateTemplatePoint ActionNum = 53110 // 新增模板下的点位
|
|
UpdateTemplatePoint ActionNum = 53210 // 更新模板下的点位
|
|
DeleteTemplatePoint ActionNum = 53310 // 删除模板下的点位
|
|
ExportTemplatePoint ActionNum = 53211 // 导出模板下的点位
|
|
ImportTemplatePoint ActionNum = 53212 // 导入模板下的点位
|
|
QueryTemplatePointSupportType ActionNum = 53011 // 查询支持的点位类型
|
|
QueryDLT645TemplatePointSupportType ActionNum = 53012 // 查询支持的点位类型
|
|
|
|
QueryModbusTemplatePoint ActionNum = 53020 // 查询MODBUS模板下的点位
|
|
CreateModbusTemplatePoint ActionNum = 53120 // 新增MODBUS模板下的点位
|
|
|
|
QueryDLT6452007TemplatePoint ActionNum = 53021 // 查询DLT6452007模板下的点位
|
|
CreateDLT6452007TemplatePoint ActionNum = 53121 // 新增DLT6452007模板下的点位
|
|
|
|
/***** 驱动接口 *****/
|
|
|
|
QueryDriver ActionNum = 54000 // 查询驱动
|
|
CreateDriver ActionNum = 54100 // 增加驱动
|
|
UpdateDriver ActionNum = 54200 // 更新驱动
|
|
DeleteDriver ActionNum = 54300 // 删除驱动
|
|
|
|
StartDriver ActionNum = 54400 // 启动驱动
|
|
StopDriver ActionNum = 54500 // 停止驱动
|
|
|
|
QueryDriverSupportType ActionNum = 54001 // 查询支持的驱动类型
|
|
QueryDriverSupportTemplateType ActionNum = 54002 // 查询驱动类型支持的模板列表
|
|
QueryDriverSupportStatus ActionNum = 54003 // 查询支持的驱动状态
|
|
QueryDriverInfo ActionNum = 54004 // 查询驱动详情
|
|
QueryDriverConfig ActionNum = 54005 // 查询驱动配置
|
|
|
|
ResetDriverInfoCount ActionNum = 54201 // 重置驱动详情的通信统计
|
|
UpdateDriverConfig ActionNum = 54202 // 更新驱动配置
|
|
|
|
/***** 驱动设备接口 *****/
|
|
|
|
QueryDriverDevice ActionNum = 54010 // 查询驱动下的设备
|
|
CreateDriverDevice ActionNum = 54110 // 增加驱动下的设备
|
|
UpdateDriverDevice ActionNum = 54210 // 更新驱动下的设备
|
|
DeleteDriverDevice ActionNum = 54310 // 删除驱动下的设备
|
|
ExportDriverDevice ActionNum = 54211 // 导出驱动下的设备
|
|
ImportDriverDevice ActionNum = 54212 // 导入驱动下的设备
|
|
|
|
/***** 实时数据接口 *****/
|
|
|
|
PointGet ActionNum = 56000 // 获取点位
|
|
PointSet ActionNum = 56001 // 点位写值
|
|
PointHistoryEnable ActionNum = 56002 // 启用历史记录
|
|
PointHistoryDisable ActionNum = 56003 // 禁用历史记录
|
|
PointHistorySetMax ActionNum = 56004 // 设置历史记录最大数量
|
|
PointHistoryClear ActionNum = 56005 // 清空历史记录
|
|
PointHistoryExport ActionNum = 56006 // 导出历史记录
|
|
PointResetHealth ActionNum = 56007 // 重置健康信息
|
|
|
|
DeviceGet ActionNum = 56100 // 获取设备
|
|
DeviceEnable ActionNum = 56101 // 启用设备
|
|
DeviceDisable ActionNum = 56102 // 禁用设备
|
|
|
|
DriverGet ActionNum = 56200 // 获取驱动
|
|
DriverStart ActionNum = 56201 // 启动驱动
|
|
DriverStop ActionNum = 56202 // 停止驱动
|
|
DriverResetHealth ActionNum = 56203 // 重置健康信息
|
|
)
|
|
|
|
type ActionNum uint64
|