From 41cd6c8db40bceb08290828ae0d4fc5caeea7147 Mon Sep 17 00:00:00 2001 From: jiazx0107@163.com <jiazx0107@163.com> Date: 星期六, 18 十一月 2023 15:58:25 +0800 Subject: [PATCH] 调整车牌识别配置 --- src/main/java/com/fzzy/gateway/entity/GatewayDevice.java | 54 ++++++++++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 48 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/fzzy/gateway/entity/GatewayDevice.java b/src/main/java/com/fzzy/gateway/entity/GatewayDevice.java index 77966f4..68c7daa 100644 --- a/src/main/java/com/fzzy/gateway/entity/GatewayDevice.java +++ b/src/main/java/com/fzzy/gateway/entity/GatewayDevice.java @@ -1,9 +1,11 @@ package com.fzzy.gateway.entity; import com.bstek.dorado.annotation.PropertyDef; + import lombok.Data; import javax.persistence.*; + import java.io.Serializable; /** @@ -23,25 +25,37 @@ @PropertyDef(label = "绯荤粺ID") private String id; - @Column(name = "DeVICE_ID_", length = 100) + @Column(name = "DEVICE_SN_", length = 100) + @PropertyDef(label = "璁惧搴忓垪鍙�") + private String deviceSn; + + @Column(name = "DEVICE_ID_", length = 50) @PropertyDef(label = "璁惧ID") private String deviceId; - @Column(name = "DeVICE_NAME_", length = 50) + @Column(name = "DEVICE_NAME_", length = 50) @PropertyDef(label = "鍚嶇О") private String deviceName; + + @Column(name = "PRODUCT_ID_", length = 50) + @PropertyDef(label = "璁惧绫诲瀷KEY") + private String productId; @Column(name = "TYPE_", length = 10) @PropertyDef(label = "璁惧绫诲瀷") private String type; @Column(name = "DEPOT_ID_", length = 30) - @PropertyDef(label = "鎵�灞炰粨搴�") + @PropertyDef(label = "浠撳簱缂栫爜") private String depotId; @Column(name = "DEPOT_NAME_", length = 50) - @PropertyDef(label = "鎵�灞炰粨搴�") + @PropertyDef(label = "浠撳簱鍚嶇О") private String depotName; + + @Column(name = "DEPOT_ID_SYS_", length = 30) + @PropertyDef(label = "搴撳尯绯荤粺浠撳簱缂栫爜") + private String depotIdSys; @Column(name = "IP_", length = 20) @PropertyDef(label = "閫氳IP") @@ -50,6 +64,14 @@ @Column(name = "PORT_") @PropertyDef(label = "閫氳绔彛") private Integer port; + + @PropertyDef(label = "璁惧鐢ㄦ埛鍚�") + @Column(name = "USERNAME_", length = 50) + private String userName; + + @PropertyDef(label = "璁惧瀵嗙爜") + @Column(name = "PASSWORD_", length = 50) + private String password; @Column(name = "RTSP_", length = 100) @PropertyDef(label = "瑙嗛RTSP", description = "鐢ㄤ簬灞�鍩熺綉鍐呮姄鎷嶉厤缃�") @@ -60,19 +82,39 @@ private String httpUrl; @PropertyDef(label = "涓婅鍗忚") - @Column(name = "pushProtocol", length = 20) + @Column(name = "PUSH_PROTOCOL_", length = 20) private String pushProtocol; +// @PropertyDef(label = "鐪佸钩鍙板崗璁�") +// @Column(name = "PROVINCE_PROTOCOL_", length = 20) +// private String provinceProtocol; + @PropertyDef(label = "鍚屾鍗忚") - @Column(name = "syncProtocol", length = 20) + @Column(name = "SYNC_PROTOCOL_", length = 20) private String syncProtocol; + + @PropertyDef(label = "TCP鏈嶅姟绔彛", description = "閽堝缃戝叧浣滀负TCP鏈嶅姟鏃跺�欑鍙�") + @Column(name = "SER_PORT_") + private int serPort; @Column(name = "ORG_ID_", length = 40) @PropertyDef(label = "缁勭粐缂栫爜") private String orgId; + @Column(name = "POSITION_", length = 40) + @PropertyDef(label = "浣嶇疆") + private String position; + @Column(name = "REMARK_", length = 200) @PropertyDef(label = "澶囨敞", description = "澶囨敞淇℃伅") private String remark; + @Column(name = "CABLE_RULE_", length = 20) + @PropertyDef(label = "甯冪嚎瑙勫垯", description = "骞虫柟浠撹〃绀哄眰琛屽垪锛岀瓛浠撹〃绀烘瘡鍦堢殑鍒楁暟") + private String cableRule; + + @Column(name = "CABLE_CIR_", length = 20) + @PropertyDef(label = "绛掍粨灞傝鍒�", description = "閽堝绛掍粨") + private String cableCir; + } -- Gitblit v1.9.3