AioDevice

This commit is contained in:
2025-07-13 14:13:12 +08:00
parent d180128edb
commit 0dbaf5eaba
6 changed files with 162 additions and 15 deletions

View File

@@ -0,0 +1,45 @@
package com.ycwl.basic.model.aio.entity;
import lombok.Data;
import java.util.Date;
/**
* 智能设备实体类
*/
@Data
public class AioDeviceEntity {
/**
* 主键ID
*/
private Long id;
/**
* 景区ID
*/
private Long scenicId;
/**
* 设备名称
*/
private String name;
/**
* 设备类型
*/
private String type;
/**
* 接入密钥
*/
private String accessKey;
/**
* 状态 (0-离线 1-在线)
*/
private Integer status;
/**
* 创建时间
*/
private Date createAt;
}

View File

@@ -15,8 +15,6 @@ public class GoodsReqQuery {
private Integer isBuy;
private Long faceId;
private Long goodsId;
@ApiModelProperty("景区id")
private Long scenicId;
@ApiModelProperty("源素材商品类型 1视频 2图像")
private Integer sourceType;
}