mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-vue3
synced 2025-08-08 16:32:43 +08:00
【代码优化】IoT:重构设备 upstream 为 message,包括上行 + 下行
This commit is contained in:
parent
c830c2b9bb
commit
d27cb80065
@ -56,8 +56,16 @@ export enum DeviceStateEnum {
|
|||||||
OFFLINE = 2 // 离线
|
OFFLINE = 2 // 离线
|
||||||
}
|
}
|
||||||
|
|
||||||
// IoT 模拟设备上报数据 Request VO
|
// IoT 模拟设备上行数据 Request VO
|
||||||
export interface IotDeviceSimulationReportReqVO {
|
export interface IotDeviceSimulationUpstreamReqVO {
|
||||||
|
id: number // 设备编号
|
||||||
|
type: string // 消息类型
|
||||||
|
identifier: string // 标识符
|
||||||
|
data: any // 请求参数
|
||||||
|
}
|
||||||
|
|
||||||
|
// IoT 模拟设备下行数据 Request VO
|
||||||
|
export interface IotDeviceSimulationDownstreamReqVO {
|
||||||
id: number // 设备编号
|
id: number // 设备编号
|
||||||
type: string // 消息类型
|
type: string // 消息类型
|
||||||
identifier: string // 标识符
|
identifier: string // 标识符
|
||||||
@ -121,9 +129,14 @@ export const DeviceApi = {
|
|||||||
return await request.download({ url: `/iot/device/get-import-template` })
|
return await request.download({ url: `/iot/device/get-import-template` })
|
||||||
},
|
},
|
||||||
|
|
||||||
// 模拟设备上报
|
// 模拟设备上行
|
||||||
simulationReportDevice: async (data: IotDeviceSimulationReportReqVO) => {
|
simulationDeviceUpstream: async (data: IotDeviceSimulationUpstreamReqVO) => {
|
||||||
return await request.post({ url: `/iot/device/simulation-report`, data })
|
return await request.post({ url: `/iot/device/simulation-upstream`, data })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 模拟设备下行
|
||||||
|
simulationDeviceDownstream: async (data: IotDeviceSimulationDownstreamReqVO) => {
|
||||||
|
return await request.post({ url: `/iot/device/simulation-downstream`, data })
|
||||||
},
|
},
|
||||||
|
|
||||||
// 获取设备属性最新数据
|
// 获取设备属性最新数据
|
||||||
|
@ -103,7 +103,7 @@
|
|||||||
<el-button
|
<el-button
|
||||||
type="primary"
|
type="primary"
|
||||||
@click="handlePropertyReport"
|
@click="handlePropertyReport"
|
||||||
v-hasPermi="['iot:device:simulation-report']"
|
v-hasPermi="['iot:device:simulation']"
|
||||||
>
|
>
|
||||||
发送
|
发送
|
||||||
</el-button>
|
</el-button>
|
||||||
@ -331,7 +331,7 @@ const handlePropertyReport = async () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await DeviceApi.simulationReportDevice({
|
await DeviceApi.simulationDeviceUpstream({
|
||||||
id: props.device.id,
|
id: props.device.id,
|
||||||
type: 'property',
|
type: 'property',
|
||||||
identifier: 'report',
|
identifier: 'report',
|
||||||
@ -375,7 +375,7 @@ const handlePropertyReport = async () => {
|
|||||||
/** 处理设备状态 */
|
/** 处理设备状态 */
|
||||||
const handleDeviceState = async (state: number) => {
|
const handleDeviceState = async (state: number) => {
|
||||||
try {
|
try {
|
||||||
await DeviceApi.simulationReportDevice({
|
await DeviceApi.simulationDeviceUpstream({
|
||||||
id: props.device.id,
|
id: props.device.id,
|
||||||
type: 'state',
|
type: 'state',
|
||||||
identifier: 'report',
|
identifier: 'report',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user