mqtt DeviceEnum
This commit is contained in:
@ -23,7 +23,7 @@ public class MPointHistory extends SQLAdapter implements Serializable{
|
||||
|
||||
private String userid;
|
||||
|
||||
private String insdt;
|
||||
private Date insdt;
|
||||
|
||||
private String tbName;
|
||||
|
||||
@ -92,11 +92,11 @@ public class MPointHistory extends SQLAdapter implements Serializable{
|
||||
this.userid = userid;
|
||||
}
|
||||
|
||||
public String getInsdt() {
|
||||
public Date getInsdt() {
|
||||
return insdt;
|
||||
}
|
||||
|
||||
public void setInsdt(String insdt) {
|
||||
public void setInsdt(Date insdt) {
|
||||
this.insdt = insdt;
|
||||
}
|
||||
|
||||
|
||||
@ -61,7 +61,7 @@ public class DataSynJob {
|
||||
mPointHistory.setMeasuredt(mPoint.getMeasuredt());
|
||||
mPointHistory.setTbName(mPoint.getMpointcode());
|
||||
mPointHistory.setUserid("data_job");
|
||||
mPointHistory.setInsdt(CommUtil.nowDate());
|
||||
mPointHistory.setInsdt(new Date());
|
||||
mPointHistoryService.saveByCreate(mPoint.getBizid(), mPointHistory);
|
||||
}
|
||||
System.out.println("完成一次(有数据)转发,执行了" + list2.size() + "次点");
|
||||
|
||||
@ -119,6 +119,11 @@ public class MqttServiceImpl implements MqttService {
|
||||
List<MPointES> redisList = new ArrayList<>();
|
||||
List<MPoint> vueList = new ArrayList<>();
|
||||
|
||||
String device = jsonObject.getString("Device");
|
||||
loggger.info("receive device={}", device);
|
||||
System.out.println("receive device=" + device);
|
||||
DeviceEnum deviceEnum = DeviceEnum.getByDeviceNumber(device);
|
||||
String deviceName = deviceEnum == null ? device : deviceEnum.getDeviceName();
|
||||
// 遍历数据条目
|
||||
for (String key : data.keySet()) {
|
||||
System.out.println("key=" + key + " value=" + data.getString(key));
|
||||
@ -148,8 +153,9 @@ public class MqttServiceImpl implements MqttService {
|
||||
MPointHistory mPointHistory = new MPointHistory();
|
||||
mPointHistory.setMeasuredt(date);
|
||||
mPointHistory.setParmvalue(value);
|
||||
mPointHistory.setTbName("tb_mp_" + key);
|
||||
mPointHistory.setUserid(port);
|
||||
mPointHistory.setTbName("tb_mp_" + device + "_" + key);
|
||||
mPointHistory.setUserid(deviceName);
|
||||
mPointHistory.setInsdt(new Date());
|
||||
insertInsert(mPointHistory);
|
||||
}
|
||||
// 推送前端数据
|
||||
|
||||
@ -421,7 +421,7 @@ public class MPointServiceImpl implements MPointService {
|
||||
// mPointHistory.setMeasuredt(timePoint);
|
||||
mPointHistory.setTbName(mpcode);
|
||||
mPointHistory.setUserid("datacollector");
|
||||
mPointHistory.setInsdt(CommUtil.nowDate());
|
||||
mPointHistory.setInsdt(new Date());
|
||||
//写子表
|
||||
mPointHistoryService.saveByCreate(CommString.BIZID_KCGW, mPointHistory);
|
||||
} catch (Exception e) {
|
||||
@ -458,7 +458,7 @@ public class MPointServiceImpl implements MPointService {
|
||||
// mPointHistory.setMeasuredt(timePoint);
|
||||
mPointHistory.setTbName(mpcode);
|
||||
mPointHistory.setUserid("datacollector");
|
||||
mPointHistory.setInsdt(CommUtil.nowDate());
|
||||
mPointHistory.setInsdt(new Date());
|
||||
mPointHistoryService.saveByCreate(CommString.BIZID_KCGW, mPointHistory);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
|
||||
297
src/main/java/com/sipai/tools/DeviceEnum.java
Normal file
297
src/main/java/com/sipai/tools/DeviceEnum.java
Normal file
@ -0,0 +1,297 @@
|
||||
package com.sipai.tools;
|
||||
|
||||
/**
|
||||
* Device enumeration
|
||||
* Auto-generated from device configuration files
|
||||
*/
|
||||
public enum DeviceEnum {
|
||||
|
||||
/** ZQR */
|
||||
ZQR("DEV001", "ZQR"),
|
||||
|
||||
/** 荟百 */
|
||||
HUI_BAI("DEV002", "荟百"),
|
||||
|
||||
/** 静城环境 */
|
||||
JING_CHENG_HUAN_JING("DEV003", "静城环境"),
|
||||
|
||||
/** 岩皇 */
|
||||
YAN_HUANG("DEV004", "岩皇"),
|
||||
|
||||
/** 东睿 */
|
||||
DONG_RUI("DEV005", "东睿"),
|
||||
|
||||
/** 科凯 */
|
||||
KE_KAI("DEV006", "科凯"),
|
||||
|
||||
/** JHRL */
|
||||
JHRL("DEV007", "JHRL"),
|
||||
|
||||
/** 天承 */
|
||||
TIAN_CHENG("DEV008", "天承"),
|
||||
|
||||
/** 上药 */
|
||||
SHANG_YAO("DEV009", "上药"),
|
||||
|
||||
/** 锦江 */
|
||||
JIN_JIANG("DEV010", "锦江"),
|
||||
|
||||
/** 甘甜 */
|
||||
GAN_TIAN("DEV011", "甘甜"),
|
||||
|
||||
/** 金住色母料 */
|
||||
JIN_ZHU_SE_MU_LIAO("DEV012", "金住色母料"),
|
||||
|
||||
/** 试四(东侧) */
|
||||
SHI_SI_DONG_CE("DEV013", "试四(东侧)"),
|
||||
|
||||
/** 扶佳3 */
|
||||
FU_JIA_3("DEV014", "扶佳3"),
|
||||
|
||||
/** 顶煦 */
|
||||
DING_XU("DEV015", "顶煦"),
|
||||
|
||||
/** 北冈 */
|
||||
BEI_GANG("DEV016", "北冈"),
|
||||
|
||||
/** 庄臣 */
|
||||
ZHUANG_CHEN("DEV017", "庄臣"),
|
||||
|
||||
/** 久宙 */
|
||||
JIU_ZHOU("DEV018", "久宙"),
|
||||
|
||||
/** 东方雨虹 */
|
||||
DONG_FANG_YU_HONG("DEV019", "东方雨虹"),
|
||||
|
||||
/** 中科院有机所 */
|
||||
ZHONG_KE_YUAN_YOU_JI_SUO("DEV020", "中科院有机所"),
|
||||
|
||||
/** 巴德士 */
|
||||
BA_DE_SHI("DEV021", "巴德士"),
|
||||
|
||||
/** 仙佳 */
|
||||
XIAN_JIA("DEV022", "仙佳"),
|
||||
|
||||
/** 深日 */
|
||||
SHEN_RI("DEV023", "深日"),
|
||||
|
||||
/** 神马 */
|
||||
SHEN_MA("DEV024", "神马"),
|
||||
|
||||
/** 炼升 */
|
||||
LIAN_SHENG("DEV025", "炼升"),
|
||||
|
||||
/** 瑞年 */
|
||||
RUI_NIAN("DEV026", "瑞年"),
|
||||
|
||||
/** 中远关西 */
|
||||
ZHONG_YUAN_GUAN_XI("DEV027", "中远关西"),
|
||||
|
||||
/** 春宝 */
|
||||
CHUN_BAO("DEV028", "春宝"),
|
||||
|
||||
/** 固创 */
|
||||
GU_CHUANG("DEV029", "固创"),
|
||||
|
||||
/** 美坚 */
|
||||
MEI_JIAN("DEV030", "美坚"),
|
||||
|
||||
/** 紫荆花 */
|
||||
ZI_JING_HUA("DEV031", "紫荆花"),
|
||||
|
||||
/** 普利特 */
|
||||
PU_LI_TE("DEV032", "普利特"),
|
||||
|
||||
/** 成宙 */
|
||||
CHENG_ZHOU("DEV033", "成宙"),
|
||||
|
||||
/** 群力 */
|
||||
QUN_LI("DEV034", "群力"),
|
||||
|
||||
/** 亨斯迈 */
|
||||
HENG_SI_MAI("DEV035", "亨斯迈"),
|
||||
|
||||
/** 欧亚 */
|
||||
OU_YA("DEV036", "欧亚"),
|
||||
|
||||
/** 强盛 */
|
||||
QIANG_SHENG("DEV037", "强盛"),
|
||||
|
||||
/** 共拓 */
|
||||
GONG_TUO("DEV038", "共拓"),
|
||||
|
||||
/** 赫腾 */
|
||||
HE_TENG("DEV039", "赫腾"),
|
||||
|
||||
/** 耀岩 */
|
||||
YAO_YAN("DEV040", "耀岩"),
|
||||
|
||||
/** 宝穗 */
|
||||
BAO_SUI("DEV041", "宝穗"),
|
||||
|
||||
/** 金狮 */
|
||||
JIN_SHI("DEV042", "金狮"),
|
||||
|
||||
/** 万巷 */
|
||||
WAN_XIANG("DEV043", "万巷"),
|
||||
|
||||
/** 联新 */
|
||||
LIAN_XIN("DEV044", "联新"),
|
||||
|
||||
/** 巴斯夫 */
|
||||
BA_SI_FU("DEV045", "巴斯夫"),
|
||||
|
||||
/** 扶佳1 */
|
||||
FU_JIA_1("DEV046", "扶佳1"),
|
||||
|
||||
/** 扶佳2 */
|
||||
FU_JIA_2("DEV047", "扶佳2"),
|
||||
|
||||
/** 嘉宝莉 */
|
||||
JIA_BAO_LI("DEV048", "嘉宝莉"),
|
||||
|
||||
/** 华界 */
|
||||
HUA_JIE("DEV049", "华界"),
|
||||
|
||||
/** 日邦 */
|
||||
RI_BANG("DEV050", "日邦"),
|
||||
|
||||
/** 中芬 */
|
||||
ZHONG_FEN("DEV051", "中芬"),
|
||||
|
||||
/** 雪垠 */
|
||||
XUE_YIN("DEV052", "雪垠"),
|
||||
|
||||
/** 科莱恩 */
|
||||
KE_LAI_EN("DEV053", "科莱恩"),
|
||||
|
||||
/** 立得 */
|
||||
LI_DE("DEV054", "立得"),
|
||||
|
||||
/** 汇得 */
|
||||
HUI_DE("DEV055", "汇得"),
|
||||
|
||||
/** 绿邹 */
|
||||
LV_ZOU("DEV056", "绿邹"),
|
||||
|
||||
/** 良田 */
|
||||
LIANG_TIAN("DEV057", "良田"),
|
||||
|
||||
/** 未来 */
|
||||
WEI_LAI("DEV058", "未来"),
|
||||
|
||||
/** 联乐 */
|
||||
LIAN_LE("DEV059", "联乐"),
|
||||
|
||||
/** 塞夫特 */
|
||||
SAI_FU_TE("DEV060", "塞夫特"),
|
||||
|
||||
/** 立邦 */
|
||||
LI_BANG("DEV061", "立邦"),
|
||||
|
||||
/** 帕克先锐 */
|
||||
PA_KE_XIAN_RUI("DEV062", "帕克先锐"),
|
||||
|
||||
/** 三井 */
|
||||
SAN_JING("DEV063", "三井"),
|
||||
|
||||
/** 帕克表面 */
|
||||
PA_KE_BIAO_MIAN("DEV064", "帕克表面"),
|
||||
|
||||
/** 长光 */
|
||||
CHANG_GUANG("DEV065", "长光"),
|
||||
|
||||
/** 益威 */
|
||||
YI_WEI("DEV066", "益威"),
|
||||
|
||||
/** 奥威 */
|
||||
AO_WEI("DEV067", "奥威"),
|
||||
|
||||
/** 东大 */
|
||||
DONG_DA("DEV068", "东大"),
|
||||
|
||||
/** 上诺 */
|
||||
SHANG_NUO("DEV069", "上诺"),
|
||||
|
||||
/** 圣科莱特 */
|
||||
SHENG_KE_LAI_TE("DEV070", "圣科莱特"),
|
||||
|
||||
/** 华谊 */
|
||||
HUA_YI("DEV071", "华谊"),
|
||||
|
||||
/** 试四 */
|
||||
SHI_SI("DEV072", "试四"),
|
||||
|
||||
/** 欣鑫 */
|
||||
XIN_XIN("DEV073", "欣鑫"),
|
||||
|
||||
/** 彭博 */
|
||||
PENG_BO("DEV074", "彭博"),
|
||||
|
||||
/** 恒安聚酯 */
|
||||
HENG_AN_JU_ZHI("DEV075", "恒安聚酯"),
|
||||
|
||||
/** 峰彩 */
|
||||
FENG_CAI("DEV076", "峰彩"),
|
||||
|
||||
/** 正欧 */
|
||||
ZHENG_OU("DEV077", "正欧"),
|
||||
|
||||
/** 派特 */
|
||||
PAI_TE("DEV078", "派特"),
|
||||
|
||||
/** 宏韵 */
|
||||
HONG_YUN("DEV079", "宏韵"),
|
||||
|
||||
/** 悦联 */
|
||||
YUE_LIAN("DEV080", "悦联"),
|
||||
|
||||
/** 长润发 */
|
||||
CHANG_RUN_FA("DEV081", "长润发"),
|
||||
|
||||
/** 卓艺 */
|
||||
ZHUO_YI("DEV082", "卓艺"),
|
||||
|
||||
/** 奥威二期 */
|
||||
AO_WEI_ER_QI("DEV083", "奥威二期");
|
||||
|
||||
private final String deviceNumber;
|
||||
private final String deviceName;
|
||||
|
||||
DeviceEnum(String deviceNumber, String deviceName) {
|
||||
this.deviceNumber = deviceNumber;
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getDeviceNumber() {
|
||||
return deviceNumber;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return deviceName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get DeviceEnum by deviceNumber
|
||||
*/
|
||||
public static DeviceEnum getByDeviceNumber(String deviceNumber) {
|
||||
for (DeviceEnum device : values()) {
|
||||
if (device.getDeviceNumber().equals(deviceNumber)) {
|
||||
return device;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get DeviceEnum by deviceName
|
||||
*/
|
||||
public static DeviceEnum getByDeviceName(String deviceName) {
|
||||
for (DeviceEnum device : values()) {
|
||||
if (device.getDeviceName().equals(deviceName)) {
|
||||
return device;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
31
src/main/resources/device/JHRL.json
Normal file
31
src/main/resources/device/JHRL.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV007",
|
||||
"deviceName": "JHRL",
|
||||
"host": "172.16.15.106",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 40100,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 40108,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/ZQR.json
Normal file
31
src/main/resources/device/ZQR.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV001",
|
||||
"deviceName": "ZQR",
|
||||
"host": "172.16.15.10",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/万巷.json
Normal file
31
src/main/resources/device/万巷.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV043",
|
||||
"deviceName": "万巷",
|
||||
"host": "172.16.15.37",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400003,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400005,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/三井.json
Normal file
31
src/main/resources/device/三井.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV063",
|
||||
"deviceName": "三井",
|
||||
"host": "172.16.15.57",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/上药.json
Normal file
31
src/main/resources/device/上药.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV009",
|
||||
"deviceName": "上药",
|
||||
"host": "172.16.15.109",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304114,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304122,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/上诺.json
Normal file
31
src/main/resources/device/上诺.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV069",
|
||||
"deviceName": "上诺",
|
||||
"host": "172.16.15.71",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400001,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400007,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/东大.json
Normal file
31
src/main/resources/device/东大.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV068",
|
||||
"deviceName": "东大",
|
||||
"host": "172.16.15.63",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304122,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/东方雨虹.json
Normal file
31
src/main/resources/device/东方雨虹.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV019",
|
||||
"deviceName": "东方雨虹",
|
||||
"host": "172.16.15.13",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/东睿.json
Normal file
31
src/main/resources/device/东睿.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV005",
|
||||
"deviceName": "东睿",
|
||||
"host": "172.16.15.104",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304122,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/中科院有机所.json
Normal file
31
src/main/resources/device/中科院有机所.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV020",
|
||||
"deviceName": "中科院有机所",
|
||||
"host": "172.16.15.14",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/中芬.json
Normal file
31
src/main/resources/device/中芬.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV051",
|
||||
"deviceName": "中芬",
|
||||
"host": "172.16.15.45",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400003,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400091,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/中远关西.json
Normal file
31
src/main/resources/device/中远关西.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV027",
|
||||
"deviceName": "中远关西",
|
||||
"host": "172.16.15.21",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/久宙.json
Normal file
31
src/main/resources/device/久宙.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV018",
|
||||
"deviceName": "久宙",
|
||||
"host": "172.16.15.12",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/亨斯迈.json
Normal file
31
src/main/resources/device/亨斯迈.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV035",
|
||||
"deviceName": "亨斯迈",
|
||||
"host": "172.16.15.29",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/仙佳.json
Normal file
31
src/main/resources/device/仙佳.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV022",
|
||||
"deviceName": "仙佳",
|
||||
"host": "172.16.15.16",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/共拓.json
Normal file
31
src/main/resources/device/共拓.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV038",
|
||||
"deviceName": "共拓",
|
||||
"host": "172.16.15.32",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400003,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400007,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/北冈.json
Normal file
31
src/main/resources/device/北冈.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV016",
|
||||
"deviceName": "北冈",
|
||||
"host": "172.16.15.116",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 40001,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 40005,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/华界.json
Normal file
31
src/main/resources/device/华界.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV049",
|
||||
"deviceName": "华界",
|
||||
"host": "172.16.15.43",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400007,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400009,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/华谊.json
Normal file
31
src/main/resources/device/华谊.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV071",
|
||||
"deviceName": "华谊",
|
||||
"host": "172.16.15.73",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400001,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400007,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/卓艺.json
Normal file
31
src/main/resources/device/卓艺.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV082",
|
||||
"deviceName": "卓艺",
|
||||
"host": "172.16.15.97",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 300001,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 300005,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/嘉宝莉.json
Normal file
31
src/main/resources/device/嘉宝莉.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV048",
|
||||
"deviceName": "嘉宝莉",
|
||||
"host": "172.16.15.42",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304122,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/固创.json
Normal file
31
src/main/resources/device/固创.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV029",
|
||||
"deviceName": "固创",
|
||||
"host": "172.16.15.23",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/圣科莱特.json
Normal file
31
src/main/resources/device/圣科莱特.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV070",
|
||||
"deviceName": "圣科莱特",
|
||||
"host": "172.16.15.72",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400001,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400007,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/塞夫特.json
Normal file
31
src/main/resources/device/塞夫特.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV060",
|
||||
"deviceName": "塞夫特",
|
||||
"host": "172.16.15.54",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 401801,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 401285,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/天承.json
Normal file
31
src/main/resources/device/天承.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV008",
|
||||
"deviceName": "天承",
|
||||
"host": "172.16.15.108",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304114,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304122,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/奥威.json
Normal file
31
src/main/resources/device/奥威.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV067",
|
||||
"deviceName": "奥威",
|
||||
"host": "172.16.15.62",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/奥威二期.json
Normal file
31
src/main/resources/device/奥威二期.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV083",
|
||||
"deviceName": "奥威二期",
|
||||
"host": "172.16.15.98",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/宏韵.json
Normal file
31
src/main/resources/device/宏韵.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV079",
|
||||
"deviceName": "宏韵",
|
||||
"host": "172.16.15.93",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400001,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400005,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/宝穗.json
Normal file
31
src/main/resources/device/宝穗.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV041",
|
||||
"deviceName": "宝穗",
|
||||
"host": "172.16.15.35",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400003,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400007,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/岩皇.json
Normal file
31
src/main/resources/device/岩皇.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV004",
|
||||
"deviceName": "岩皇",
|
||||
"host": "172.16.15.103",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 30000,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 30004,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/峰彩.json
Normal file
31
src/main/resources/device/峰彩.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV076",
|
||||
"deviceName": "峰彩",
|
||||
"host": "172.16.15.90",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400001,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400005,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/巴德士.json
Normal file
31
src/main/resources/device/巴德士.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV021",
|
||||
"deviceName": "巴德士",
|
||||
"host": "172.16.15.15",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/巴斯夫.json
Normal file
31
src/main/resources/device/巴斯夫.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV045",
|
||||
"deviceName": "巴斯夫",
|
||||
"host": "172.16.15.39",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/帕克先锐.json
Normal file
31
src/main/resources/device/帕克先锐.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV062",
|
||||
"deviceName": "帕克先锐",
|
||||
"host": "172.16.15.56",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 402001,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 402007,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/帕克表面.json
Normal file
31
src/main/resources/device/帕克表面.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV064",
|
||||
"deviceName": "帕克表面",
|
||||
"host": "172.16.15.58",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400009,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400011,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/庄臣.json
Normal file
31
src/main/resources/device/庄臣.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV017",
|
||||
"deviceName": "庄臣",
|
||||
"host": "172.16.15.118",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304128,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/强盛.json
Normal file
31
src/main/resources/device/强盛.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV037",
|
||||
"deviceName": "强盛",
|
||||
"host": "172.16.15.31",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400003,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400005,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/彭博.json
Normal file
31
src/main/resources/device/彭博.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV074",
|
||||
"deviceName": "彭博",
|
||||
"host": "172.16.15.76",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400037,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400039,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/恒安聚酯.json
Normal file
31
src/main/resources/device/恒安聚酯.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV075",
|
||||
"deviceName": "恒安聚酯",
|
||||
"host": "172.16.15.77",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 402001,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 402007,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/悦联.json
Normal file
31
src/main/resources/device/悦联.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV080",
|
||||
"deviceName": "悦联",
|
||||
"host": "172.16.15.94",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/成宙.json
Normal file
31
src/main/resources/device/成宙.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV033",
|
||||
"deviceName": "成宙",
|
||||
"host": "172.16.15.27",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/扶佳1.json
Normal file
31
src/main/resources/device/扶佳1.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV046",
|
||||
"deviceName": "扶佳1",
|
||||
"host": "172.16.15.40",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/扶佳2.json
Normal file
31
src/main/resources/device/扶佳2.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV047",
|
||||
"deviceName": "扶佳2",
|
||||
"host": "172.16.15.41",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/扶佳3.json
Normal file
31
src/main/resources/device/扶佳3.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV014",
|
||||
"deviceName": "扶佳3",
|
||||
"host": "172.16.15.114",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/日邦.json
Normal file
31
src/main/resources/device/日邦.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV050",
|
||||
"deviceName": "日邦",
|
||||
"host": "172.16.15.44",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400100,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400108,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/春宝.json
Normal file
31
src/main/resources/device/春宝.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV028",
|
||||
"deviceName": "春宝",
|
||||
"host": "172.16.15.22",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/普利特.json
Normal file
31
src/main/resources/device/普利特.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV032",
|
||||
"deviceName": "普利特",
|
||||
"host": "172.16.15.26",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/未来.json
Normal file
31
src/main/resources/device/未来.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV058",
|
||||
"deviceName": "未来",
|
||||
"host": "172.16.15.52",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 40100,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 40108,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/欣鑫.json
Normal file
31
src/main/resources/device/欣鑫.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV073",
|
||||
"deviceName": "欣鑫",
|
||||
"host": "172.16.15.75",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400001,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400007,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/欧亚.json
Normal file
31
src/main/resources/device/欧亚.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV036",
|
||||
"deviceName": "欧亚",
|
||||
"host": "172.16.15.30",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/正欧.json
Normal file
31
src/main/resources/device/正欧.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV077",
|
||||
"deviceName": "正欧",
|
||||
"host": "172.16.15.91",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400001,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400005,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/汇得.json
Normal file
31
src/main/resources/device/汇得.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV055",
|
||||
"deviceName": "汇得",
|
||||
"host": "172.16.15.49",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400003,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400007,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/派特.json
Normal file
31
src/main/resources/device/派特.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV078",
|
||||
"deviceName": "派特",
|
||||
"host": "172.16.15.92",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400001,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400005,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/深日.json
Normal file
31
src/main/resources/device/深日.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV023",
|
||||
"deviceName": "深日",
|
||||
"host": "172.16.15.17",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/炼升.json
Normal file
31
src/main/resources/device/炼升.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV025",
|
||||
"deviceName": "炼升",
|
||||
"host": "172.16.15.19",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/瑞年.json
Normal file
31
src/main/resources/device/瑞年.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV026",
|
||||
"deviceName": "瑞年",
|
||||
"host": "172.16.15.20",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/甘甜.json
Normal file
31
src/main/resources/device/甘甜.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV011",
|
||||
"deviceName": "甘甜",
|
||||
"host": "172.16.15.11",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/益威.json
Normal file
31
src/main/resources/device/益威.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV066",
|
||||
"deviceName": "益威",
|
||||
"host": "172.16.15.61",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/神马.json
Normal file
31
src/main/resources/device/神马.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV024",
|
||||
"deviceName": "神马",
|
||||
"host": "172.16.15.18",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304114,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/科凯.json
Normal file
31
src/main/resources/device/科凯.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV006",
|
||||
"deviceName": "科凯",
|
||||
"host": "172.16.15.105",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/科莱恩.json
Normal file
31
src/main/resources/device/科莱恩.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV053",
|
||||
"deviceName": "科莱恩",
|
||||
"host": "172.16.15.47",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400003,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400005,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/立得.json
Normal file
31
src/main/resources/device/立得.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV054",
|
||||
"deviceName": "立得",
|
||||
"host": "172.16.15.48",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400003,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400005,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/立邦.json
Normal file
31
src/main/resources/device/立邦.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV061",
|
||||
"deviceName": "立邦",
|
||||
"host": "172.16.15.55",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400100,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400108,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/紫荆花.json
Normal file
31
src/main/resources/device/紫荆花.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV031",
|
||||
"deviceName": "紫荆花",
|
||||
"host": "172.16.15.25",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/绿邹.json
Normal file
31
src/main/resources/device/绿邹.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV056",
|
||||
"deviceName": "绿邹",
|
||||
"host": "172.16.15.50",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400595,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400785,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/美坚.json
Normal file
31
src/main/resources/device/美坚.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV030",
|
||||
"deviceName": "美坚",
|
||||
"host": "172.16.15.24",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/群力.json
Normal file
31
src/main/resources/device/群力.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV034",
|
||||
"deviceName": "群力",
|
||||
"host": "172.16.15.28",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/耀岩.json
Normal file
31
src/main/resources/device/耀岩.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV040",
|
||||
"deviceName": "耀岩",
|
||||
"host": "172.16.15.34",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304122,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/联乐.json
Normal file
31
src/main/resources/device/联乐.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV059",
|
||||
"deviceName": "联乐",
|
||||
"host": "172.16.15.53",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304122,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/联新.json
Normal file
31
src/main/resources/device/联新.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV044",
|
||||
"deviceName": "联新",
|
||||
"host": "172.16.15.38",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400003,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400005,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/良田.json
Normal file
31
src/main/resources/device/良田.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV057",
|
||||
"deviceName": "良田",
|
||||
"host": "172.16.15.51",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400100,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400108,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/荟百.json
Normal file
31
src/main/resources/device/荟百.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV002",
|
||||
"deviceName": "荟百",
|
||||
"host": "172.16.15.101",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 41801,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 41285,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/试四.json
Normal file
31
src/main/resources/device/试四.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV072",
|
||||
"deviceName": "试四",
|
||||
"host": "172.16.15.74",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400003,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400005,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
21
src/main/resources/device/试四(东侧).json
Normal file
21
src/main/resources/device/试四(东侧).json
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"deviceNumber": "DEV013",
|
||||
"deviceName": "试四(东侧)",
|
||||
"host": "172.16.15.113",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 30000,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/赫腾.json
Normal file
31
src/main/resources/device/赫腾.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV039",
|
||||
"deviceName": "赫腾",
|
||||
"host": "172.16.15.33",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400003,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400007,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/金住色母料.json
Normal file
31
src/main/resources/device/金住色母料.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV012",
|
||||
"deviceName": "金住色母料",
|
||||
"host": "172.16.15.112",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 40004,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 40007,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/金狮.json
Normal file
31
src/main/resources/device/金狮.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV042",
|
||||
"deviceName": "金狮",
|
||||
"host": "172.16.15.36",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400003,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400007,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/锦江.json
Normal file
31
src/main/resources/device/锦江.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV010",
|
||||
"deviceName": "锦江",
|
||||
"host": "172.16.15.110",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 40001,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 40021,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/长光.json
Normal file
31
src/main/resources/device/长光.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV065",
|
||||
"deviceName": "长光",
|
||||
"host": "172.16.15.59",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 400100,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 400108,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/长润发.json
Normal file
31
src/main/resources/device/长润发.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV081",
|
||||
"deviceName": "长润发",
|
||||
"host": "172.16.15.96",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/雪垠.json
Normal file
31
src/main/resources/device/雪垠.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV052",
|
||||
"deviceName": "雪垠",
|
||||
"host": "172.16.15.46",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/静城环境.json
Normal file
31
src/main/resources/device/静城环境.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV003",
|
||||
"deviceName": "静城环境",
|
||||
"host": "172.16.15.102",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 41801,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 41285,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
31
src/main/resources/device/顶煦.json
Normal file
31
src/main/resources/device/顶煦.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"deviceNumber": "DEV015",
|
||||
"deviceName": "顶煦",
|
||||
"host": "172.16.15.115",
|
||||
"port": 502,
|
||||
"slaveId": 1,
|
||||
"time": 10000,
|
||||
"enabled": true,
|
||||
"tags": [
|
||||
{
|
||||
"key": "SSLL",
|
||||
"des": "SSLL",
|
||||
"address": 304113,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
},
|
||||
{
|
||||
"key": "LJLL",
|
||||
"des": "LJLL",
|
||||
"address": 304121,
|
||||
"dataType": "TWO_BYTE_INT_UNSIGNED",
|
||||
"a": 0,
|
||||
"k": 1,
|
||||
"b": 0,
|
||||
"bit": null
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user