mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-29 18:23:59 +08:00
chore: DeviceEntity设备实体类的Id字段类型错误,数据库内为varchar,映射类型为Long;
This commit is contained in:
@@ -11,7 +11,7 @@ import java.util.Date;
|
|||||||
@Schema(description = "设备信息")
|
@Schema(description = "设备信息")
|
||||||
public class DeviceEntity {
|
public class DeviceEntity {
|
||||||
@Schema(description = "设备ID")
|
@Schema(description = "设备ID")
|
||||||
private Long id;
|
private String id;
|
||||||
|
|
||||||
@Schema(description = "关联用户ID")
|
@Schema(description = "关联用户ID")
|
||||||
private Long userId;
|
private Long userId;
|
||||||
|
|||||||
Reference in New Issue
Block a user