增加箱门告警手动生成功能

This commit is contained in:
wyw
2024-08-17 10:29:26 +08:00
parent 61f1d12550
commit 6b995a83a2
6 changed files with 124 additions and 67 deletions

View File

@ -0,0 +1,15 @@
package com.fastbee.common.model.bto;
import lombok.Data;
/**
* 箱门告警参数上传
*/
@Data
public class DoorAlertBto {
private Long deviceId;
//箱门状态:2=箱门打开,1=箱门振动
private Integer doorState;
}