补充字段

结构优化
648540858 2023-12-25 23:45:00 +08:00
parent 746cd2543d
commit b38c7eef70
1 changed files with 15 additions and 0 deletions

View File

@ -10,6 +10,14 @@ import io.swagger.v3.oas.annotations.media.Schema;
@Schema(description = "国标设备/平台")
public class Device {
/**
* ID
*/
@Schema(description = "数据库自增ID")
private int id;
/**
*
*/
@ -191,6 +199,13 @@ public class Device {
@Schema(description = "自动同步通道信息到资源库")
private boolean autoSyncChannel;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getDeviceId() {
return deviceId;