| 123456789101112131415161718192021 |
- package com.zswl.dataservice.model.mqtt;
- import com.zswl.dataservice.utils.mqtt.type.OnLineState;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- /**
- * @author TRX
- * @date 2024/5/17
- */
- @Data
- public class GateWayInfoAddParam extends SuperParam {
- @Schema(description = "网关ID")
- private String gateWayId;
- @Schema(description = "网关名称")
- private String gateWayName;
- @Schema(description = "设备在线状态")
- OnLineState state = OnLineState.OffLine;
- }
|