chore: DeviceEntity设备实体类的Id字段类型错误,数据库内为varchar,映射类型为Long;

This commit is contained in:
caixypromise
2025-03-29 15:59:48 +08:00
parent 0598ab4400
commit 0b07269346
@@ -11,7 +11,7 @@ import java.util.Date;
@Schema(description = "设备信息")
public class DeviceEntity {
@Schema(description = "设备ID")
private Long id;
private String id;
@Schema(description = "关联用户ID")
private Long userId;