package cn.iocoder.yudao.module.iot.controller.admin.device.vo.device;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import jakarta.validation.constraints.DecimalMax;
|
import jakarta.validation.constraints.DecimalMin;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Set;
|
|
@Schema(description = "管理后台 - IoT 设备新增/修改 Request VO")
|
@Data
|
public class IotDeviceSaveReqVO {
|
|
@Schema(description = "设备编号", example = "177")
|
private Long id;
|
|
@Schema(description = "设备名称", requiredMode = Schema.RequiredMode.AUTO, example = "王五")
|
private String deviceName;
|
|
@Schema(description = "备注名称", example = "张三")
|
private String nickname;
|
|
@Schema(description = "设备序列号", example = "123456")
|
private String serialNumber;
|
|
@Schema(description = "设备图片", example = "https://iocoder.cn/1.png")
|
private String picUrl;
|
|
@Schema(description = "设备分组编号数组", example = "1,2")
|
private Set<Long> groupIds;
|
|
@Schema(description = "产品编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "26202")
|
private Long productId;
|
|
@Schema(description = "网关设备 ID", example = "16380")
|
private Long gatewayId;
|
|
@Schema(description = "设备配置", example = "{\"abc\": \"efg\"}")
|
private String config;
|
|
@Schema(description = "设备位置的纬度", example = "39.915")
|
@DecimalMin(value = "-90", message = "纬度范围为 -90 到 90")
|
@DecimalMax(value = "90", message = "纬度范围为 -90 到 90")
|
private BigDecimal latitude;
|
|
@Schema(description = "设备位置的经度", example = "116.404")
|
@DecimalMin(value = "-180", message = "经度范围为 -180 到 180")
|
@DecimalMax(value = "180", message = "经度范围为 -180 到 180")
|
private BigDecimal longitude;
|
|
}
|