Browse Source

修改字段

konghl 4 years ago
parent
commit
a3c4950238

+ 2 - 2
ebc-sea-platform/src/main/java/com/ai/ipu/server/service/impl/DeviceManageServiceImpl.java

@ -78,11 +78,11 @@ public class DeviceManageServiceImpl implements DeviceManageService {
78 78
				dataMap.put("remarks", remarks);
79 79
80 80
				// 绑定信息
81
				dataMap.put("BIND_NAME", "--");
81
				dataMap.put("bindName", "--");
82 82
				if (!unBindDeviceBoolean) {
83 83
					for (Map bindDeviceMap : bindDeviceList) {
84 84
						if (deviceId.equals(String.valueOf(bindDeviceMap.get("DEVICE_ID")))) {
85
							dataMap.put("BIND_NAME", bindDeviceMap.get("NAME"));
85
							dataMap.put("bindName", bindDeviceMap.get("NAME"));
86 86
							break;
87 87
						}
88 88
					}