@@ -0,0 +1,4 @@
+package com.zhongshu.card.client.model.visitor;
+/**
+ * 访客应用相关的
+ */
@@ -591,7 +591,7 @@ public class DeviceInfoServiceImpl extends SuperService implements DeviceInfoSer
}
/**
- * 得到所属机构
+ * 得到所属机构 ()
*
* @param deviceInfo
* @return
@@ -56,6 +56,12 @@ public class DeviceProductBindDeviceService extends SuperService {
@Autowired
private DeviceInfoServiceImpl deviceInfoService;
+ /**
+ * 产品绑定设备信息
+ *
+ * @param param
+ * @return
public ResultContent bindDevices(DeviceProductBindDeviceBind param) {
DeviceProduct deviceProduct = deviceProductDao.findTopById(param.getDeviceProductId());
if (ObjectUtils.isEmpty(deviceProduct)) {
@@ -137,6 +137,12 @@ public class DeviceProductService extends SuperService {
return ResultContent.buildSuccess();
+ * 更新产品绑定的设备数量
+ * @param entity
public ResultContent updateNumber(DeviceProduct entity) {
if (ObjectUtils.isNotEmpty(entity)) {
String id = entity.getId();
+package com.zhongshu.card.server.core.service.visitor;