| 12345678910111213141516171819202122232425262728293031 |
- package com.zswl.dataservice.model.mqtt;
- import com.zswl.dataservice.type.DataState;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- /**
- * @author TRX
- * @date 2024/6/23
- */
- @Data
- public class DeviceInfoUpdateRemark {
- @Schema(description = "数据ID")
- private String id;
- @Schema(description = "备注")
- private String remark;
- @Schema(description = "模版ID")
- private String iotTemplateId;
- @Schema(description = "设备本地日志上报")
- private Boolean isReportLogs = Boolean.TRUE;
- @Schema(description = "数据状态")
- private DataState state;
- @Schema(description = "所属项目code")
- private String projectCode;
- }
|