You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 regels
189 B

  1. package com.yzx;
  2. public interface IHardwareEquipment {
  3. /**
  4. * 释放sdk资源
  5. */
  6. void cleanup();
  7. String getDeployInfo();
  8. //获取状态
  9. int getStatus();
  10. }