1078-添加部标通道页面

This commit is contained in:
648540858
2024-06-07 00:10:36 +08:00
parent f7d811a299
commit 5d5d654410
30 changed files with 887 additions and 198 deletions

View File

@@ -20,7 +20,7 @@ public class JTChannel {
* 设备的数据库ID
*/
@Schema(description = "设备的数据库ID")
private int deviceId;
private int terminalId;
/**
* 通道ID
@@ -51,12 +51,12 @@ public class JTChannel {
this.name = name;
}
public int getDeviceId() {
return deviceId;
public int getTerminalId() {
return terminalId;
}
public void setDeviceId(int deviceId) {
this.deviceId = deviceId;
public void setTerminalId(int terminalId) {
this.terminalId = terminalId;
}
public String getCreateTime() {
@@ -88,7 +88,7 @@ public class JTChannel {
return "JTChannel{" +
"id=" + id +
", name='" + name + '\'' +
", deviceId=" + deviceId +
", terminalId=" + terminalId +
", channelId=" + channelId +
", createTime='" + createTime + '\'' +
", updateTime='" + updateTime + '\'' +

View File

@@ -44,7 +44,7 @@ public class JTDevice {
* 终端型号
*/
@Schema(description = "终端型号")
private String deviceModel;
private String model;
/**
* 终端手机号
@@ -89,6 +89,10 @@ public class JTDevice {
private Double latitude;
@Schema(description = "注册时间")
private String registerTime;
@Schema(description = "创建时间")
private String createTime;
@@ -146,12 +150,12 @@ public class JTDevice {
this.makerId = makerId;
}
public String getDeviceModel() {
return deviceModel;
public String getModel() {
return model;
}
public void setDeviceModel(String deviceModel) {
this.deviceModel = deviceModel;
public void setModel(String model) {
this.model = model;
}
public String getPhoneNumber() {
@@ -234,6 +238,14 @@ public class JTDevice {
this.status = status;
}
public String getRegisterTime() {
return registerTime;
}
public void setRegisterTime(String registerTime) {
this.registerTime = registerTime;
}
@Override
public String toString() {
return "JTDevice{" +
@@ -242,11 +254,12 @@ public class JTDevice {
", 市县域ID='" + cityId + '\'' +
", 市县域文字描述='" + cityText + '\'' +
", 制造商ID='" + makerId + '\'' +
", 终端型号='" + deviceModel + '\'' +
", 终端型号='" + model + '\'' +
", 终端手机号='" + phoneNumber + '\'' +
", 设备ID='" + terminalId + '\'' +
", 车牌颜色=" + plateColor +
", 车牌='" + plateNo + '\'' +
", 注册时间='" + registerTime + '\'' +
", 鉴权码='" + authenticationCode + '\'' +
", status=" + status +
'}';