ICenterDevice.java 539 B

12345678910111213141516
  1. package com.huimv.receiver.farm.service;
  2. import com.huimv.common.utils.Result;
  3. import java.io.UnsupportedEncodingException;
  4. public interface ICenterDevice {
  5. //同步添加数据中心端数据
  6. Result syncAddFarmDevice(String deviceData) throws UnsupportedEncodingException;
  7. //同步编辑数据中心端数据
  8. Result syncEditFarmDevice(String deviceData) throws UnsupportedEncodingException;
  9. //同步删除数据中心端数据
  10. Result syncRemoveDevice(String deviceData) throws UnsupportedEncodingException;
  11. }