GateWayInfoAddParam.java 512 B

123456789101112131415161718192021
  1. package com.zswl.dataservice.model.mqtt;
  2. import com.zswl.dataservice.utils.mqtt.type.OnLineState;
  3. import io.swagger.v3.oas.annotations.media.Schema;
  4. import lombok.Data;
  5. /**
  6. * @author TRX
  7. * @date 2024/5/17
  8. */
  9. @Data
  10. public class GateWayInfoAddParam extends SuperParam {
  11. @Schema(description = "网关ID")
  12. private String gateWayId;
  13. @Schema(description = "网关名称")
  14. private String gateWayName;
  15. @Schema(description = "设备在线状态")
  16. OnLineState state = OnLineState.OffLine;
  17. }